1
0
mirror of https://github.com/WeBankFinTech/fes.js.git synced 2025-04-06 03:59:53 +08:00

feat: [plugin-local] 添加 getLocal API 获取当前用户选择的语言 ()

This commit is contained in:
qlin 2024-01-24 16:44:27 +08:00 committed by GitHub
parent 03fba1af2a
commit 2d5a45df8a

@ -57,6 +57,10 @@ const setLocale = ({ locale }) => {
window.localStorage.setItem("fes_locale", locale);
};
const getLocale = () => {
return unref(i18n.global.locale)
}
const addLocale = ({ locale, messages }) => {
messages[locale] = messages;
if (isRef(i18n.global.messages)) {
@ -82,6 +86,7 @@ const t = (key) => {
const locale = {
setLocale,
getLocale,
addLocale,
getAllLocales,
messages,