国际化警告::[vue-i18n] Value of key '指令' is not a string!

[vue-i18n] Value of key ‘维修保养管理’ is not a string!
在这里插入图片描述
解决方法
在src/locale/index.js修改配置 在创建i18n实例是去掉警告

const i18n = new VueI18n({
locale: lang,
messages,
silentTranslationWarn: true
})
在这里插入图片描述
修改后刷新页面问题完美解决!

发布了22 篇原创文章 · 获赞 25 · 访问量 3139

猜你喜欢

转载自blog.csdn.net/lys20000913/article/details/99712659