diff options
author | 2022-04-14 23:30:06 +0200 | |
---|---|---|
committer | 2022-04-14 23:30:06 +0200 | |
commit | 8559fbd7744fe82b7702a5c0eb77a8d627c5a73d (patch) | |
tree | 642d53a300db113ab2fabb7403a3114ee6254dfe /src/App.vue | |
parent | 0af7d81abd987aa5d1b0321c25a65131d978e929 (diff) | |
download | it-tools-8559fbd7744fe82b7702a5c0eb77a8d627c5a73d.tar.gz it-tools-8559fbd7744fe82b7702a5c0eb77a8d627c5a73d.tar.zst it-tools-8559fbd7744fe82b7702a5c0eb77a8d627c5a73d.zip |
refactor: removed theme editor
Diffstat (limited to 'src/App.vue')
-rw-r--r-- | src/App.vue | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/App.vue b/src/App.vue index eb22b2e..98f9152 100644 --- a/src/App.vue +++ b/src/App.vue @@ -4,7 +4,6 @@ import { layouts } from './layouts'; import { computed } from 'vue'; import { useRoute } from 'vue-router' import { darkThemeOverrides, lightThemeOverrides } from './themes' -import { NThemeEditor } from 'naive-ui'; // TODO: remove before mep import { darkTheme, NConfigProvider, @@ -24,12 +23,9 @@ const themeOverrides = computed(() => styleStore.isDarkTheme ? darkThemeOverride <n-config-provider :theme="theme" :theme-overrides="themeOverrides"> <n-global-style /> <n-message-provider placement="bottom"> - <n-theme-editor> - <!-- TODO: remove before mep --> - <component :is="layout"> - <router-view /> - </component> - </n-theme-editor> + <component :is="layout"> + <router-view /> + </component> </n-message-provider> </n-config-provider> </template> |