一、问题如下
要使用element-ui的表格时,在main.js中同时全局引入了element和i18n时,页面会报错如下:
Error in render : TypeError: Cannot read properties of undefined (reading '_t')
该问题是i18n未兼容element导致。
二、问题处理
在i18n的配置文件中添加如下配置:
import eleLocale from 'element-ui/lib/locale'; eleLocale.i18n((key, value) => i18n.t(key, value))
重新启动运行,报错问题消失,element-ui的组件也恢复正常显示。
标签:Vue,兼容问题,js,element,组件,ui,i18n,报错,Element From: https://www.cnblogs.com/guobin-/p/17055641.html