vue 报错解决:TypeError: Cannot read property '_t' of undefined"
Posted smart-girl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 ''
)
国际化其他配置项不变
以上是关于vue 报错解决:TypeError: Cannot read property '_t' of undefined"的主要内容,如果未能解决你的问题,请参考以下文章
解决vue3 vue-pdf报错Uncaught (in promise) TypeError: h is not a function
解决vue3 vue-pdf报错Uncaught (in promise) TypeError: h is not a function
vue 报错解决:TypeError: Cannot read property '_t' of undefined"
vue-cli开启gzip打包报错TypeError: Cannot read property ‘tapPromise‘ of undefined-解决
VUE.JS 使用axios数据请求时数据绑定时 报错 TypeError: Cannot set property 'xxxx' of undefined 的解决办法
解决vue中报错 TypeError: Cannot read properties of undefined (reading ‘value‘)“