51 lines
1.4 KiB
Vue
51 lines
1.4 KiB
Vue
<template>
|
|
<n-layout has-sider style="height: 100%">
|
|
<n-layout-sider
|
|
bordered
|
|
collapse-mode="width"
|
|
:collapsed-width="64"
|
|
:width="220"
|
|
:native-scrollbar="false"
|
|
:collapsed="appStore.collapsed"
|
|
>
|
|
<SideBar />
|
|
</n-layout-sider>
|
|
<n-layout>
|
|
<n-layout-header :style="{ height: useTheme.header.height + 'px' }">
|
|
<AppHeader />
|
|
</n-layout-header>
|
|
|
|
<n-layout style="background-color: #f5f6fb" :style="`height: calc(100% - ${useTheme.header.height}px)`">
|
|
<AppTags v-if="useTheme.tags.visible" />
|
|
<AppMain
|
|
class="cur-scroll border-t bc-eee"
|
|
:style="{
|
|
height: `calc(100% - ${useTheme.tags.visible ? useTheme.tags.height : 0}px)`,
|
|
overflow: 'auto',
|
|
}"
|
|
/>
|
|
</n-layout>
|
|
</n-layout>
|
|
</n-layout>
|
|
</template>
|
|
|
|
<script setup>
|
|
import AppHeader from './components/header/index.vue'
|
|
import SideBar from './components/sidebar/index.vue'
|
|
import AppMain from './components/AppMain.vue'
|
|
import AppTags from './components/tags/index.vue'
|
|
import { useThemeStore } from '@/store/modules/theme'
|
|
import { useAppStore } from '@/store/modules/app'
|
|
|
|
const useTheme = useThemeStore()
|
|
const appStore = useAppStore()
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.n-layout-header {
|
|
height: 60px;
|
|
background-color: #fff;
|
|
border-bottom: 1px solid #eee;
|
|
}
|
|
</style>
|