92 lines
2.5 KiB
Vue
92 lines
2.5 KiB
Vue
<template>
|
||
<Layout :class="prefixCls">
|
||
<LayoutFeatures />
|
||
<LayoutHeader fixed v-if="getShowFullHeaderRef" />
|
||
<Layout
|
||
:class="{
|
||
'ant-layout-has-sider': getIsMixSidebar,
|
||
}"
|
||
>
|
||
<LayoutSideBar v-if="getShowSidebar || getIsMobile" />
|
||
<Layout :class="`${prefixCls}__main`">
|
||
<LayoutMultipleHeader />
|
||
<LayoutContent />
|
||
<LayoutFooter />
|
||
</Layout>
|
||
</Layout>
|
||
</Layout>
|
||
</template>
|
||
|
||
<script lang="ts">
|
||
import { defineComponent } from 'vue';
|
||
import { Layout } from 'ant-design-vue';
|
||
import { createAsyncComponent } from '/@/utils/factory/createAsyncComponent';
|
||
|
||
import LayoutHeader from './header/index.vue';
|
||
import LayoutContent from './content/index.vue';
|
||
import LayoutSideBar from './sider/index.vue';
|
||
import LayoutMultipleHeader from './header/MultipleHeader.vue';
|
||
|
||
import { useHeaderSetting } from '/@/hooks/setting/useHeaderSetting';
|
||
import { useMenuSetting } from '/@/hooks/setting/useMenuSetting';
|
||
import { useDesign } from '/@/hooks/web/useDesign';
|
||
|
||
import { registerGlobComp } from '/@/components/registerGlobComp';
|
||
import { useAppInject } from '/@/hooks/web/useAppInject';
|
||
|
||
export default defineComponent({
|
||
name: 'DefaultLayout',
|
||
components: {
|
||
LayoutFeatures: createAsyncComponent(() => import('/@/layouts/default/feature/index.vue')),
|
||
LayoutFooter: createAsyncComponent(() => import('/@/layouts/default/footer/index.vue')),
|
||
LayoutHeader,
|
||
LayoutContent,
|
||
LayoutSideBar,
|
||
LayoutMultipleHeader,
|
||
Layout,
|
||
},
|
||
setup() {
|
||
// ! Only register global components here
|
||
// ! Can reduce the size of the first screen code
|
||
// default layout It is loaded after login. So it won’t be packaged to the first screen
|
||
registerGlobComp();
|
||
|
||
const { prefixCls } = useDesign('default-layout');
|
||
|
||
const { getIsMobile } = useAppInject();
|
||
|
||
const { getShowFullHeaderRef } = useHeaderSetting();
|
||
|
||
const { getShowSidebar, getIsMixSidebar } = useMenuSetting();
|
||
|
||
return {
|
||
getShowFullHeaderRef,
|
||
getShowSidebar,
|
||
prefixCls,
|
||
getIsMobile,
|
||
getIsMixSidebar,
|
||
};
|
||
},
|
||
});
|
||
</script>
|
||
<style lang="less">
|
||
@import (reference) '../../design/index.less';
|
||
@prefix-cls: ~'@{namespace}-default-layout';
|
||
|
||
.@{prefix-cls} {
|
||
display: flex;
|
||
width: 100%;
|
||
min-height: 100%;
|
||
background: @content-bg;
|
||
flex-direction: column;
|
||
|
||
> .ant-layout {
|
||
min-height: 100%;
|
||
}
|
||
|
||
&__main {
|
||
margin-left: 1px;
|
||
}
|
||
}
|
||
</style>
|