fix: 🐛 侧边栏Logo设置无效问题和侧边菜单高度超出不显示问题修复

This commit is contained in:
郝先瑞
2024-02-20 11:30:10 +08:00
parent eacd977ada
commit 5d2b6a0b10

View File

@@ -24,6 +24,14 @@ const appStore = useAppStore();
const settingsStore = useSettingsStore();
const permissionStore = usePermissionStore();
const sidebarLogo = settingsStore.sidebarLogo;
const sidebarLogo = computed(() => settingsStore.sidebarLogo);
const layout = computed(() => settingsStore.layout);
</script>
<style lang="scss" scoped>
.has-logo {
.el-scrollbar {
height: calc(100vh - $navbar-height);
}
}
</style>