22 lines
504 B
Vue
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>
|