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