study.vue 260 B

1234567891011121314151617181920
  1. <template>
  2. <view class="center">
  3. <empty></empty>
  4. </view>
  5. </template>
  6. <script>
  7. import empty from '@/components/empty';
  8. export default {
  9. components: {
  10. empty,
  11. },
  12. onLoad() {
  13. this.$api.msg( '暂无内容' );
  14. }
  15. }
  16. </script>
  17. <style lang="scss">
  18. </style>