-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
切换语言不能响应式的变化 m #78
Comments
是否与项目搭建有关系,我的demo是用webpack搭的,切换后需要reload一下才能切换语言下显示 |
vite项目 配置 Voerkai18nPlugin({ autoImport: false }) ; |
不是vite项目怎么办,只能reload吗 |
切换语言与 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
const changeClick = async () => {
if (i18nScope.activeLanguage == "en") {
await i18nScope.change("zh")
}else {
await i18nScope.change("en")
}
}切换完成后语言成功了,但是页面无响应变化
项目配置:vue3 webpack
The text was updated successfully, but these errors were encountered: