组件插值
基本用法
有时,我们需要对包含在 HTML 标签或组件中的语言环境消息进行本地化。例如:
<p>I accept xxx <a href="/term">Terms of Service Agreement</a></p>在以上消息中,如果您使用 $t,可能会尝试组合以下语言环境消息:
const messages = {
en: {
term1: 'I Accept xxx\'s',
term2: 'Terms of Service Agreement'
}
}您本地化的模板可能看起来像这样:
<p>{{ $t('term1') }}<a href="/term">{{ $t('term2') }}</a></p>输出:
<p>I accept xxx <a href="/term">Terms of Service Agreement</a></p>这非常麻烦,而且如果您在语言环境消息中配置 <a> 标签,由于使用 v-html="$t('term')" 进行本地化,存在 XSS 漏洞的风险。
您可以使用 Translation 组件(i18n-t)避免这个问题。例如:
模板:
<div id="app">
<!-- ... -->
<i18n-t keypath="term" tag="label" for="tos">
<a :href="url" target="_blank">{{ $t('tos') }}</a>
</i18n-t>
<!-- ... -->
</div>JavaScript:
import { createApp } from 'vue'
import { createI18n } from 'vue-i18n'
const i18n = createI18n({
locale: 'en',
messages: {
en: {
tos: 'Term of Service',
term: 'I accept xxx {0}.'
},
ja: {
tos: '利用規約',
term: '私は xxx の{0}に同意します。'
}
}
})
const app = createApp({
data: () => ({ url: '/term' })
})
app.use(i18n)
app.mount('#app')输出如下:
<div id="app">
<!-- ... -->
<label for="tos">
I accept xxx <a href="/term" target="_blank">Term of Service</a>.
</label>
<!-- ... -->
</div>关于以上示例,请参见 示例
Translation 组件的子元素使用 keypath 属性的语言环境消息进行插值。在上面的例子中,
<a :href="url" target="_blank">{{ $t('tos') }}</a>
使用 term 语言环境消息进行插值。
在上面的例子中,组件插值遵循 列表插值。Translation 组件的子元素按其出现顺序进行插值。
您可以通过指定 tag 属性来选择根节点元素类型。如果省略,则默认为 Fragments。
插槽语法用法
使用命名插槽语法更加方便。例如:
模板:
<div id="app">
<!-- ... -->
<i18n-t keypath="info" tag="p">
<template v-slot:limit>
<span>{{ changeLimit }}</span>
</template>
<template v-slot:action>
<a :href="changeUrl">{{ $t('change') }}</a>
</template>
</i18n-t>
<!-- ... -->
</div>JavaScript:
import { createApp } from 'vue'
import { createI18n } from 'vue-i18n'
const i18n = createI18n({
locale: 'en',
messages: {
en: {
info: 'You can {action} until {limit} minutes from departure.',
change: 'change your flight',
refund: 'refund the ticket'
}
}
})
const app = createApp({
data: () => ({
changeUrl: '/change',
refundUrl: '/refund',
changeLimit: 15,
refundLimit: 30
})
})
app.use(i18n)
app.mount('#app')输出:
<div id="app">
<!-- ... -->
<p>
You can <a href="/change">change your flight</a> until <span>15</span> minutes from departure.
</p>
<!-- ... -->
</div>您也可以在模板中使用以下插槽简写:
<div id="app">
<!-- ... -->
<i18n-t keypath="info" tag="p">
<template #limit>
<span>{{ changeLimit }}</span>
</template>
<template #action>
<a :href="changeUrl">{{ $t('change') }}</a>
</template>
</i18n-t>
<!-- ... -->
</div>限制
⚠️ 在 Translation 组件中,不支持插槽 props。
复数形式用法
您可以通过使用 plural 属性在组件插值中使用复数形式。例如:
模板:
<div id="app">
<!-- ... -->
<i18n-t keypath="message.plural" locale="en" :plural="count">
<template #n>
<b>{{ count }}</b>
</template>
</i18n-t>
<!-- ... -->
</div>JavaScript:
const { createApp, ref } = Vue
const { createI18n } = VueI18n
const i18n = createI18n({
legacy: false,
locale: 'en',
messages: {
en: {
message: {
plural: 'no bananas | {n} banana | {n} bananas'
}
}
}
})
const app = createApp({
setup() {
const count = ref(2)
return { count }
}
})
app.use(i18n)
app.mount('#app')输出如下:
<div id="app" data-v-app="">
<!-- ... -->
<b>2</b> bananas
<!-- ... -->
</div>作用域解析
Translation 组件的 作用域 解析默认为 parent。
这意味着 Translation 组件使用使用它的父组件启用的作用域。
如果父组件在 useScope: 'global' 中有 useI18n,它将使用全局作用域,如果 useScope: 'local',它将使用父组件的本地作用域。
不过,您有时会在浏览器控制台遇到以下警告消息:
[intlify] Not found parent scope. use the global scope.当您在使用 Translation 组件的父组件中没有运行 useI18n 时会显示此消息。
在这种情况下,Translation 组件的作用域将如警告消息所述回退到全局作用域。
抑制此警告的解决方法是指定 global 作为 Translation 组件的 scope 属性。
<i18n-t keypath="message.foo" scope="global">
...
</i18n-t>注意
此警告在生产构建中不会输出到浏览器控制台。
注意
这在 petite-vue-i18n 中不可用