File tree 2 files changed +0
-6
lines changed
2 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,6 @@ const themeStore = useThemeStore();
18
18
const { allMenus, childLevelMenus, activeFirstLevelMenuKey, setActiveFirstLevelMenuKey } = useMixMenuContext ();
19
19
const { routerPushByKeyWithMetaQuery } = useRouterPush ();
20
20
21
- const inverted = computed (() => ! themeStore .darkMode && themeStore .sider .inverted );
22
-
23
21
const selectedKey = computed (() => {
24
22
const { hideInMenu, activeMenu } = route .meta ;
25
23
const name = route .name as string ;
@@ -53,7 +51,6 @@ function handleSelectMixMenu(menu: App.Global.Menu) {
53
51
<FirstLevelMenu
54
52
:menus =" allMenus"
55
53
:active-menu-key =" activeFirstLevelMenuKey"
56
- :inverted =" inverted"
57
54
:sider-collapse =" appStore.siderCollapse"
58
55
:dark-mode =" themeStore.darkMode"
59
56
:theme-color =" themeStore.themeColor"
Original file line number Diff line number Diff line change @@ -27,8 +27,6 @@ const {
27
27
} = useMixMenuContext ();
28
28
const { routerPushByKeyWithMetaQuery } = useRouterPush ();
29
29
30
- const inverted = computed (() => ! themeStore .darkMode && themeStore .sider .inverted );
31
-
32
30
const selectedKey = computed (() => {
33
31
const { hideInMenu, activeMenu } = route .meta ;
34
32
const name = route .name as string ;
86
84
:collapsed-width =" themeStore.sider.collapsedWidth"
87
85
:collapsed-icon-size =" 22"
88
86
:options =" childLevelMenus"
89
- :inverted =" inverted"
90
87
:indent =" 18"
91
88
@update:value =" routerPushByKeyWithMetaQuery"
92
89
/>
You can’t perform that action at this time.
0 commit comments