Files
pqs-9100_client/frontend/src/views/home/index.vue
2025-10-14 19:00:47 +08:00

22 lines
504 B
Vue

<template>
<div class="homeView">
<model v-if="!authStore.showMenuFlag"></model>
<dashboard v-if="authStore.showMenuFlag"></dashboard>
</div>
</template>
<script lang="ts" setup>
import { useAuthStore } from '@/stores/modules/auth'
import model from './tabs/model.vue'
import dashboard from './tabs/dashboard.vue'
const authStore = useAuthStore()
</script>
<style lang="scss" scoped>
.homeView {
width: 100%;
// height: calc(100vh - 120px);
height: 100%;
}
</style>