1. 程式人生 > >vue 報錯解決:TypeError: Cannot read property '_t' of undefined"

vue 報錯解決:TypeError: Cannot read property '_t' of undefined"

前端報錯如下:
[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 ''
  }
})

國際化其他項配置不變,僅作記錄。