When looking to include localized text within tag content, I typically use the following method:
<span>{{ $t('myText') }}</span>
However, I have been unable to find a way to add localized text for tag attributes. I attempted the following:
<v-text-field
label="{{ $t('myText') }}"
></v-text-field>
Unfortunately, it did not work as expected. Can anyone provide guidance on how to achieve this?