feat: plugin-locale默认语言最终是中文

This commit is contained in:
万纯 2021-03-05 18:49:13 +08:00
parent 1673ef4b7e
commit c367445c2f

View File

@ -35,7 +35,10 @@ const getDefaultLocale = () => {
fallbackLocale: window.navigator.language,
};
}
return {};
return {
locale: 'zh-CN',
fallbackLocale: 'zh-CN',
};
};
const messages = {};