1234567891011121314151617181920212223 |
- <template>
- <div class="main">
- <el-row>
- <el-col :span="24" class="animate__animated animate__backInRight" v-loading="loading">
- <el-col :span="24" class="one">首页 </el-col>
- </el-col>
- </el-row>
- </div>
- </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>
|