You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.7 KiB
49 lines
1.7 KiB
<script lang="ts" setup> |
|
import { Layout } from 'ant-design-vue' |
|
import { computed, unref } from 'vue' |
|
|
|
import LayoutContent from './content/index.vue' |
|
import LayoutHeader from './header/index.vue' |
|
import LayoutMultipleHeader from './header/MultipleHeader.vue' |
|
import LayoutSideBar from './sider/index.vue' |
|
import { useHeaderSetting } from '@/hooks/setting/useHeaderSetting' |
|
import { useMenuSetting } from '@/hooks/setting/useMenuSetting' |
|
import { useAppInject } from '@/hooks/web/useAppInject' |
|
import { useLockPage } from '@/hooks/web/useLockPage' |
|
import { createAsyncComponent } from '@/utils/factory/createAsyncComponent' |
|
|
|
defineOptions({ name: 'DefaultLayout' }) |
|
|
|
const LayoutFeatures = createAsyncComponent(() => import('@/layouts/default/feature/index.vue')) |
|
const LayoutFooter = createAsyncComponent(() => import('@/layouts/default/footer/index.vue')) |
|
|
|
const { getIsMobile } = useAppInject() |
|
const { getShowFullHeaderRef } = useHeaderSetting() |
|
const { getShowSidebar, getIsMixSidebar, getShowMenu } = useMenuSetting() |
|
|
|
// Create a lock screen monitor |
|
const lockEvents = useLockPage() |
|
|
|
const layoutClass = computed(() => { |
|
const cls: string[] = ['ant-layout'] |
|
if (unref(getIsMixSidebar) || unref(getShowMenu)) |
|
cls.push('ant-layout-has-sider') |
|
|
|
return cls |
|
}) |
|
</script> |
|
|
|
<template> |
|
<Layout class="min-h-full w-full flex flex-col" v-bind="lockEvents"> |
|
<LayoutFeatures /> |
|
<LayoutHeader v-if="getShowFullHeaderRef" fixed /> |
|
<Layout :class="[layoutClass]"> |
|
<LayoutSideBar v-if="getShowSidebar || getIsMobile" /> |
|
<Layout class="ml-0.25 w-full"> |
|
<LayoutMultipleHeader /> |
|
<LayoutContent /> |
|
<LayoutFooter /> |
|
</Layout> |
|
</Layout> |
|
</Layout> |
|
</template>
|
|
|