mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-02-19 12:23:54 +08:00
fix: 解决关闭菜单选项时刷新跳转到概览页的问题 (#4939)
This commit is contained in:
parent
1090df3703
commit
e799d1cc49
1 changed files with 4 additions and 5 deletions
|
@ -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…
Reference in a new issue