translationComponent.vue 328 B

123456789101112131415161718192021
  1. <template>
  2. <Page title='首页'>
  3. <template v-slot:body>
  4. </template>
  5. </Page>
  6. </template>
  7. <script setup>
  8. import { ref } from 'vue';
  9. import { useLifecycle } from '@hooks/useCommon.js';
  10. useLifecycle({
  11. load: () => {
  12. // 添加加载逻辑
  13. }
  14. });
  15. </script>
  16. <style lang='scss' scoped>
  17. /* 样式代码 */
  18. </style>