diff --git a/package.json b/package.json index 26da7b5..83a0793 100644 --- a/package.json +++ b/package.json @@ -60,6 +60,7 @@ "stylelint-config-recommended-vue": "^1.4.0", "stylelint-config-standard": "^27.0.0", "stylelint-order": "^5.0.0", + "terser": "^5.15.0", "typescript": "^4.6.3", "unplugin-auto-import": "^0.11.1", "unplugin-vue-components": "^0.22.4", diff --git a/src/i18n/index.ts b/src/i18n/index.ts index f35e1bb..71ac9b4 100644 --- a/src/i18n/index.ts +++ b/src/i18n/index.ts @@ -13,7 +13,7 @@ export function loadLang() { export const i18n = createI18n({ // globalInjection: true, - // legacy: false, + legacy: false, locale: 'zh-cn', fallbackLocale: 'zh-cn', messages: loadLang(), @@ -23,7 +23,7 @@ export function setLang(locale?: string) { if (locale) { localStorage.setItem('lang', locale); } - i18n.global.locale = locale || localStorage.getItem('lang') || ''; + i18n.global.locale.value = locale || localStorage.getItem('lang') || ''; } setLang(); diff --git a/src/store/modules/user.ts b/src/store/modules/user.ts index 674932b..8a6c80f 100644 --- a/src/store/modules/user.ts +++ b/src/store/modules/user.ts @@ -6,62 +6,62 @@ import { watch } from 'vue'; const { VITE_TOKEN_KEY } = import.meta.env; const token = useCookies().get(VITE_TOKEN_KEY as string); -// interface StoreUser { -// token: string; -// info: Record; -// } +interface StoreUser { + token: string; + info: Record; +} -// export const useUserStore = defineStore({ -// id: 'app-user', -// state: (): StoreUser => ({ -// token: token, -// info: {}, -// }), -// getters: { -// getUserInfo(): any { -// return this.info || {}; -// }, -// }, -// actions: { -// setInfo(info: any) { -// this.info = info ? info : ''; -// }, -// login() { -// return new Promise((resolve) => { -// const { data } = loginPassword(); -// watch(data, () => { -// this.setInfo(data.value); -// // useCookies().set(VITE_TOKEN_KEY as string, data.value.token); -// resolve(data.value); -// }); -// }); -// }, -// }, -// }); -export const useUserStore = defineStore('app-user', () => { - const Token = ref(token); - const info = ref>({}); - const setInfo = (info: any) => { - info.value = info ? info : ''; - }; - const getUserInfo = () => { - return info || {}; - }; - const login = () => { - return new Promise((resolve) => { - const { data } = loginPassword(); - watch(data, () => { - setInfo(data.value); - // useCookies().set(VITE_TOKEN_KEY as string, data.value.token); - resolve(data.value); +export const useUserStore = defineStore({ + id: 'app-user', + state: (): StoreUser => ({ + token: token, + info: {}, + }), + getters: { + getUserInfo(): any { + return this.info || {}; + }, + }, + actions: { + setInfo(info: any) { + this.info = info ? info : ''; + }, + login() { + return new Promise((resolve) => { + const { data } = loginPassword(); + watch(data, () => { + this.setInfo(data.value); + // useCookies().set(VITE_TOKEN_KEY as string, data.value.token); + resolve(data.value); + }); }); - }); - }; - return { - Token, - info, - setInfo, - login, - getUserInfo, - }; + }, + }, }); +// export const useUserStore = defineStore('app-user', () => { +// const Token = ref(token); +// const info = ref>({}); +// const setInfo = (info: any) => { +// info.value = info ? info : ''; +// }; +// const getUserInfo = () => { +// return info || {}; +// }; +// const login = () => { +// return new Promise((resolve) => { +// const { data } = loginPassword(); +// watch(data, () => { +// setInfo(data.value); +// // useCookies().set(VITE_TOKEN_KEY as string, data.value.token); +// resolve(data.value); +// }); +// }); +// }; +// return { +// Token, +// info, +// setInfo, +// login, +// getUserInfo, +// }; +// }); diff --git a/src/views/home/index.vue b/src/views/home/index.vue index 2a71e24..da2456e 100644 --- a/src/views/home/index.vue +++ b/src/views/home/index.vue @@ -13,7 +13,7 @@ -
+
@@ -30,14 +30,16 @@