28 lines
568 B
Vue
28 lines
568 B
Vue
![]() |
<template>
|
||
|
<div class="user-centre-layout">
|
||
|
<UserMenu />
|
||
|
<Main />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup name="layout">
|
||
|
import { useSettingStore } from '@/store/modules/setting';
|
||
|
|
||
|
import UserMenu from './component/UserMenu';
|
||
|
import Main from './component/Main';
|
||
|
const SettingStore = useSettingStore();
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.user-centre-layout {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
.layout-main {
|
||
|
display: inline-block !important;
|
||
|
width: calc(100% - 320px) !important;
|
||
|
vertical-align: top;
|
||
|
padding: 16px 16px 16px 0;
|
||
|
}
|
||
|
}
|
||
|
</style>
|