vue 消除i18n翻译错误警告和router重复警告

vue i18n消除翻译错误警告

image.png

实现:

const i18n = new VueI18n({
   locale: getLanguage(),
   messages,
   //添加以下代码
   silentTranslationWarn: true
 })

router重复警告

14983429fc05f685792430f563f2607.jpg

实现:

router.matcher = new Router().matcher; //match

你可能感兴趣的:(vue 消除i18n翻译错误警告和router重复警告)