欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

el-tooltip组件中content使用Vue-i18n报错TypeError: Cannot read property ‘$t‘ of null

程序员文章站 2022-07-12 13:18:13
...

一般我们组件内使用动态绑定时会这样写 this.$t(‘manage.add’)

<el-input
	:placeholder="this.$t('manage.add')"
	v-model="input">
</el-input>

但是当我们使用el-tooltip组件时

<el-tooltip :content="this.$t('manage.edit')" placement="bottom">
	<el-button type="primary" icon="el-icon-edit" circle></el-button>
</el-tooltip>

就会报如下错误
el-tooltip组件中content使用Vue-i18n报错TypeError: Cannot read property ‘$t‘ of null
这时我们需要把代码改为$t(‘manage.edit’)就可以了,如下

<el-tooltip :content="$t('manage.edit')" placement="bottom">
	<el-button type="primary" icon="el-icon-edit" circle></el-button>
</el-tooltip>

当我们使用i18n时,template里可以这样写

{{$t('manage.add')}}

script里可以这样写

this.$t('manage.add')

组件动态绑定可以这样写

this.$t('manage.add')$t('manage.add')

然而部分组件则只能直接使用

$t('manage.add')

这就是造成错误的原因