123456789101112131415161718192021 |
- <template>
- <Page title='首页'>
- <template v-slot:body>
- </template>
- </Page>
- </template>
- <script setup>
- import { ref } from 'vue';
- import { useLifecycle } from '@hooks/useCommon.js';
- useLifecycle({
- load: () => {
- // 添加加载逻辑
- }
- });
- </script>
- <style lang='scss' scoped>
- /* 样式代码 */
- </style>
|