mirror of
https://gitee.com/dromara/go-view.git
synced 2026-04-23 00:00:12 +08:00
fix: 修改TS报错问题,抽离水印文案
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
import type { WritableComputedRef } from 'vue'
|
||||
import { defineStore } from 'pinia'
|
||||
import { lang } from '@/settings/designSetting'
|
||||
import { LangStateType } from './langStore.d'
|
||||
@@ -28,7 +29,7 @@ export const useLangStore = defineStore({
|
||||
changeLang(lang: LangEnum): void {
|
||||
if (this.lang === lang) return
|
||||
this.lang = lang
|
||||
i18n.global.locale = lang
|
||||
i18n.global.locale = (lang as unknown) as WritableComputedRef<LangEnum>
|
||||
setLocalStorage(GO_LANG_STORE, this.$state)
|
||||
|
||||
if (settingStore.getChangeLangReload) {
|
||||
|
||||
Reference in New Issue
Block a user