码迷,mamicode.com
首页 > 其他好文 > 详细

vue 报错解决:TypeError: Cannot read property '_t' of undefined"

时间:2019-06-26 00:59:51      阅读:508      评论:0      收藏:0      [点我收藏+]

标签:cti   解决   options   i18n   报错   国际   ann   code   ons   

前端报错如下:
[Vue warn]: Error in render: “TypeError: Cannot read property ‘_t’ of undefined”

是在项目中用了多语言配置,vue 跟 i18n之间的兼容问题。解决方法如下:

Vue.use(iView) 

替换成

Vue.use(iView, {
  i18n: function(path, options) {
    let value = i18n.t(path, options)
    if (value !== null && value !== undefined) {
      return value
    }
    return ''
  }
})

国际化其他配置项不变

vue 报错解决:TypeError: Cannot read property '_t' of undefined"

标签:cti   解决   options   i18n   报错   国际   ann   code   ons   

原文地址:https://www.cnblogs.com/smart-girl/p/11084010.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!