mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
80 lines
2.0 KiB
TypeScript
80 lines
2.0 KiB
TypeScript
import './index.scss'
|
|
|
|
import { NLayout, NLayoutContent } from 'naive-ui'
|
|
import RayTransitionComponent from '@/components/RayTransitionComponent/index.vue'
|
|
import LayoutMenu from './components/Menu/index'
|
|
import SiderBar from './components/SiderBar/index'
|
|
import MenuTag from './components/MenuTag/index'
|
|
|
|
import { useSetting } from '@/store'
|
|
|
|
const Layout = defineComponent({
|
|
name: 'Layout',
|
|
setup() {
|
|
const settingStore = useSetting()
|
|
|
|
const { height: windowHeight } = useWindowSize()
|
|
const {
|
|
themeValue,
|
|
reloadRouteSwitch: modelReloadRoute,
|
|
menuTagSwitch: modelMenuTagSwitch,
|
|
} = storeToRefs(settingStore)
|
|
const cssVarsRef = computed(() => {
|
|
let cssVar = {}
|
|
|
|
if (settingStore.menuTagSwitch) {
|
|
cssVar = {
|
|
'--layout-content-height': 'calc(100% - 110px)',
|
|
}
|
|
} else {
|
|
cssVar = {
|
|
'--layout-content-height': 'calc(100% - 64px)',
|
|
}
|
|
}
|
|
|
|
return cssVar
|
|
})
|
|
const {
|
|
layout: { copyright },
|
|
} = __APP_CFG__
|
|
|
|
return {
|
|
windowHeight,
|
|
modelReloadRoute,
|
|
modelMenuTagSwitch,
|
|
cssVarsRef,
|
|
copyright,
|
|
themeValue,
|
|
}
|
|
},
|
|
render() {
|
|
return (
|
|
<div
|
|
class={['layout', this.themeValue ? 'layout--dark' : '']}
|
|
style={[`height: ${this.windowHeight}px`, this.cssVarsRef]}
|
|
>
|
|
<NLayout class="layout-full" hasSider>
|
|
<LayoutMenu />
|
|
<NLayout>
|
|
<SiderBar />
|
|
{this.modelMenuTagSwitch ? <MenuTag /> : ''}
|
|
<NLayoutContent
|
|
class="layout-content__router-view"
|
|
nativeScrollbar={false}
|
|
>
|
|
{this.modelReloadRoute ? <RayTransitionComponent /> : ''}
|
|
{this.copyright ? (
|
|
<div class="layout-footer">{this.copyright}</div>
|
|
) : (
|
|
''
|
|
)}
|
|
</NLayoutContent>
|
|
</NLayout>
|
|
</NLayout>
|
|
</div>
|
|
)
|
|
},
|
|
})
|
|
|
|
export default Layout
|