33 lines
853 B
Vue
33 lines
853 B
Vue
<script setup>
|
|
import AppHeader from './components/header/index.vue'
|
|
import SideMenu from './components/sidebar/index.vue'
|
|
import AppMain from './components/AppMain.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<div class="layout">
|
|
<n-layout has-sider position="absolute">
|
|
<n-layout-sider :width="200" :collapsed-width="0" :native-scrollbar="false">
|
|
<SideMenu />
|
|
</n-layout-sider>
|
|
<n-layout>
|
|
<n-layout-header>
|
|
<AppHeader />
|
|
</n-layout-header>
|
|
<n-layout position="absolute" style="top: 60px; background-color: #f5f6fb" :native-scrollbar="false">
|
|
<AppMain />
|
|
</n-layout>
|
|
</n-layout>
|
|
</n-layout>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.n-layout-header {
|
|
height: 60px;
|
|
background-color: #fff;
|
|
border-bottom: 1px solid #eee;
|
|
border-left: 1px solid #eee;
|
|
}
|
|
</style>
|