使用 Vuei18n 和 Vuetify 让我混淆了这一点
这是我的代码(我在行中注意到了奇怪的事情):
<v-form @submit.prevent="login" v-model="valid" ref="form">
<v-text-field
prepend-icon="person"
name="login"
:label="$t('Login')" <-- This line is still translated automatically
type="email"
v-model="email"
:rules="[v => !!v || $t('E-mail is required')]" <-- This line is not translated automatically
></v-text-field>
...
</v-form>
Run Code Online (Sandbox Code Playgroud)
如何自动翻译输入表单下的信息?