12345678910111213141516171819 |
- <template>
- <custom-layout class="main">
- <el-col :span="24" class="one">首页 </el-col>
- </custom-layout>
- </template>
- <script setup>
- import { UserStore } from '@/store/user'
- const userStore = UserStore()
- const user = computed(() => userStore.user)
- // 加载中
- const loading = ref(false)
- // 路由
- const router = useRouter()
- </script>
- <style scoped lang="scss">
- .main {
- }
- </style>
|