Vue-props:我可以将类型道具与$ t {{}}一起使用

时间:2019-12-18 15:43:42

标签: vuejs2 vue-component

这类似于我拥有的代码

<component
type="example" />

但我想这样使用它

<component
type="{{ $t('common.forms.search') }}" />

问题在于它不起作用

1 个答案:

答案 0 :(得分:1)

您可以像这样在Vue中绑定属性:

<component :type="$t('common.forms.search')" />

或冗长:

<component v-bind:type="$t('common.forms.search')" />

请参见https://vuejs.org/v2/guide/syntax.html#Attributes