| 1234567891011121314151617181920 |
- <template>
- <view class="center">
- <empty></empty>
- </view>
- </template>
- <script>
- import empty from '@/components/empty';
- export default {
- components: {
- empty,
- },
- onLoad() {
- this.$api.msg( '暂无内容' );
- }
- }
- </script>
- <style lang="scss">
- </style>
|