Browse Source

fix: 解决关闭菜单选项时刷新跳转到概览页的问题 (#4939)

pull/4941/head
ssongliu 7 months ago committed by GitHub
parent
commit
e799d1cc49
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 9
      frontend/src/layout/index.vue

9
frontend/src/layout/index.vue

@ -41,11 +41,6 @@ const { switchDark } = useTheme();
let timer: NodeJS.Timer | null = null;
onMounted(() => {
if (!tabsStore.activeTabPath) {
handleMenuClick('/');
}
});
const classObj = computed(() => {
return {
fullScreen: globalStore.isFullScreen,
@ -163,6 +158,10 @@ onBeforeUnmount(() => {
timer = null;
});
onMounted(() => {
if (globalStore.openMenuTabs && !tabsStore.activeTabPath) {
handleMenuClick('/');
}
loadStatus();
initFavicon();
loadDataFromDB();

Loading…
Cancel
Save