fix(hooks): 修复登录页切换登录页参数丢失问题

This commit is contained in:
Soybean
2021-09-16 20:11:45 +08:00
parent b4adf678a4
commit 789855a378
12 changed files with 144 additions and 100 deletions

View File

@@ -14,6 +14,6 @@ const app = useAppStore();
const theme = useThemeStore();
const title = useAppTitle();
const showTitle = computed(() => !app.menu.collapsed && theme.navStyle.mode !== 'vertical-mix');
const showTitle = computed(() => !app.menu.collapsed || !theme.isVerticalNav);
</script>
<style scoped></style>