Commit eea414e04ba1fe482f22b81c06058fef77c7caec
Committed by
GitHub
1 parent
0bd98b3c
feat: 恢复暗黑主题 (#2947)
* feat: 恢复暗黑主题 * fix: 修复danger btn暗黑样式优先级
Showing
1 changed file
with
2 additions
and
2 deletions
Too many changes to show.
To preserve performance only 1 of 5 files are displayed.
src/components/Application/index.ts
... | ... | @@ -4,7 +4,7 @@ import appLogo from './src/AppLogo.vue'; |
4 | 4 | import appProvider from './src/AppProvider.vue'; |
5 | 5 | import appSearch from './src/search/AppSearch.vue'; |
6 | 6 | import appLocalePicker from './src/AppLocalePicker.vue'; |
7 | -// import appDarkModeToggle from './src/AppDarkModeToggle.vue'; | |
7 | +import appDarkModeToggle from './src/AppDarkModeToggle.vue'; | |
8 | 8 | |
9 | 9 | export { useAppProviderContext } from './src/useAppContext'; |
10 | 10 | |
... | ... | @@ -12,4 +12,4 @@ export const AppLogo = withInstall(appLogo); |
12 | 12 | export const AppProvider = withInstall(appProvider); |
13 | 13 | export const AppSearch = withInstall(appSearch); |
14 | 14 | export const AppLocalePicker = withInstall(appLocalePicker); |
15 | -// export const AppDarkModeToggle = withInstall(appDarkModeToggle); | |
15 | +export const AppDarkModeToggle = withInstall(appDarkModeToggle); | ... | ... |