[Fix][UI Next] Fix dark theme logout. (#7965)

Update_README
songjianet 2022-01-12 18:39:33 +08:00 committed by GitHub
parent 455cede28e
commit 79e2c386df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -22,6 +22,7 @@ import { useForm } from './use-form'
import { useTranslate } from './use-translate'
import { useLogin } from './use-login'
import { useLocalesStore } from '@/store/locales/locales'
import { useThemeStore } from "@/store/theme/theme";
const login = defineComponent({
name: 'login',
@ -30,6 +31,11 @@ const login = defineComponent({
const { handleChange } = useTranslate(locale)
const { handleLogin } = useLogin(state)
const localesStore = useLocalesStore()
const themeStore = useThemeStore()
if (themeStore.getTheme) {
themeStore.setDarkTheme()
}
return { t, handleChange, handleLogin, ...toRefs(state), localesStore }
},

View File

@ -43,7 +43,7 @@
}
.links {
color: #2080f0;
color: dodgerblue;
text-decoration: none;
cursor: pointer;