fix: improve layout boundary issues (#4450)
parent
bc625ee710
commit
81a9accafd
|
@ -143,6 +143,19 @@ watch(
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => preferences.app.layout,
|
||||||
|
async (val) => {
|
||||||
|
if (val === 'sidebar-mixed-nav' && preferences.sidebar.hidden) {
|
||||||
|
updatePreferences({
|
||||||
|
sidebar: {
|
||||||
|
hidden: false,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
const slots = useSlots();
|
const slots = useSlots();
|
||||||
const headerSlots = computed(() => {
|
const headerSlots = computed(() => {
|
||||||
return Object.keys(slots).filter((key) => key.startsWith('header-'));
|
return Object.keys(slots).filter((key) => key.startsWith('header-'));
|
||||||
|
|
Loading…
Reference in New Issue