index.vue 529 B

123456789101112131415161718192021222324
  1. <template>
  2. <div class="main">
  3. <el-row>
  4. <el-col :span="24" class="animate__animated animate__backInRight" v-loading="loading">
  5. 首页
  6. </el-col>
  7. </el-row>
  8. </div>
  9. </template>
  10. <script setup>
  11. import { siteInfo, footInfo, menuList } from '@/layout/site'
  12. import { UserStore } from '@/store/user'
  13. const userStore = UserStore()
  14. const user = computed(() => userStore.user)
  15. // 加载中
  16. const loading = ref(false)
  17. // 路由
  18. const router = useRouter()
  19. </script>
  20. <style scoped lang="scss">
  21. .main {
  22. }
  23. </style>