info.vue 509 B

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