1234567891011121314151617181920212223242526272829303132 |
- <template>
- <view class="no-more">
- <text v-if="isLoading">正在加载 ...</text>
- <text v-else>没有更多信息啦 ~</text>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
-
- props: {
- isLoading: {
- type: Boolean,
- default: false
- }
- },
-
- methods: {},
- created: function () {}
- };
- </script>
- <style>
- @import './nomore.css';
- </style>
|