fix: 修复layout的bug

This commit is contained in:
wanchun 2022-07-04 16:08:03 +08:00
parent b3dbbe187c
commit 3e3ee6a4b4
2 changed files with 7 additions and 2 deletions

View File

@ -43,7 +43,7 @@
</f-layout>
</f-layout>
</template>
<template v-if="currentNavigation === 'left-right'">
<template v-else-if="currentNavigation === 'left-right'">
<f-aside
v-model:collapsed="collapsedRef"
:fixed="isFixedSidebar"

View File

@ -21,9 +21,14 @@ const Layout = defineComponent({
const filledMenuRef = computed(() => fillMenu(menusRef.value, getRoutes()));
const localeShared = plugin.getShared('locale');
const renderCustom = config.renderCustom;
delete config.renderCustom;
return () => {
const slots = {
renderCustom: config.renderCustom,
renderCustom,
locale: () => {
if (localeShared) {
return <localeShared.SelectLang></localeShared.SelectLang>;