28 lines
568 B
Vue
Raw Normal View History

2025-04-11 17:32:55 +08:00
<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>