You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.2 KiB
Vue
45 lines
1.2 KiB
Vue
2 years ago
|
<script setup lang='ts'>
|
||
2 years ago
|
import { computed } from 'vue'
|
||
2 years ago
|
import { NLayout, NLayoutContent } from 'naive-ui'
|
||
|
import Sider from './sider/index.vue'
|
||
2 years ago
|
import Header from './header/index.vue'
|
||
|
import { useBasicLayout } from '@/hooks/useBasicLayout'
|
||
|
import { useAppStore } from '@/store'
|
||
|
|
||
|
const appStore = useAppStore()
|
||
|
|
||
|
const { isMobile } = useBasicLayout()
|
||
|
|
||
|
const collapsed = computed(() => appStore.siderCollapsed)
|
||
|
|
||
|
const getMobileClass = computed(() => {
|
||
|
if (isMobile.value)
|
||
|
return ['rounded-none', 'shadow-none']
|
||
|
return ['border', 'rounded-md', 'shadow-md']
|
||
|
})
|
||
|
|
||
|
const getContainerClass = computed(() => {
|
||
|
return [
|
||
|
'h-full',
|
||
|
{ 'pt-14': isMobile.value },
|
||
|
{ 'pl-[260px]': !isMobile.value && !collapsed.value },
|
||
|
]
|
||
|
})
|
||
2 years ago
|
</script>
|
||
|
|
||
|
<template>
|
||
2 years ago
|
<div class="h-screen" :class="[isMobile ? 'p-0' : 'p-4']">
|
||
2 years ago
|
<div class="h-full overflow-hidden" :class="getMobileClass">
|
||
|
<NLayout class="z-40 transition" :class="getContainerClass" has-sider>
|
||
|
<Sider />
|
||
|
<Header v-if="isMobile" />
|
||
|
<NLayoutContent class="h-full">
|
||
2 years ago
|
<RouterView v-slot="{ Component, route }">
|
||
|
<component :is="Component" :key="route.fullPath" />
|
||
|
</RouterView>
|
||
2 years ago
|
</NLayoutContent>
|
||
|
</NLayout>
|
||
|
</div>
|
||
2 years ago
|
</div>
|
||
|
</template>
|