Home > Enterprise >  Vuetify 3 and vue-i18n for tag attribute
Vuetify 3 and vue-i18n for tag attribute

Time:01-24

When I need localized text in tag content I do something like this

<span>{{ $t('myText') }}</span>

But I can't find a way to add localized text for tag attribute. I tried

 <v-text-field
    label="{{ $t('myText') }}"
  ></v-text-field>

but it didn't work. Could anyone say how to do it?

CodePudding user response:

you can use it directly like any variable :

 <v-text-field
    :label="$t('myText')"
  ></v-text-field>
  •  Tags:  
  • Related