【发布时间】:2022-01-23 12:27:03
【问题描述】:
我想用 vuejs 翻译 select 选项中的文本,我该怎么做?
data: () => {
hiring_types: [
{ value:'contract', text: 'contract'},
{value:'vat', text: 'vat'}
],
}
模板:
<b-form-select
v-model="form.contract_data.hiring_type"
:options="hiring_types"
@input="setSelected"
id="hiring_types"
:state="validate(form.contract_data.hiring_type)">
</b-form-select>
【问题讨论】:
-
检查 npm 包 vue-i18n
-
我已经有 I-18n