<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div id="app" >
<p>{{ $t("one.index", { mag: "我的"}) }}</p>
</div>
</body>
<!-- vue 模板的 i18n 写法, 只对当前容器中的 Vue 进行配置 -->
<i18n>
cn: {
index: "你好世界"
}
</i18n>
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<script src="https://unpkg.com/vue-i18n/dist/vue-i18n.js"></script>
<script>
new Vue({
// i18n 属性名是固定的
i18n: new VueI18n({ // new VueI18n() 可以对Vue 容器进行全局配置也可以, 只在当前组件容器中进行配置
// locale 和 messages 字段也是固定的, 只有 messages 内部的字段是自定义的
locale: 'cn',
messages: {
// 这是 "具名格式"
cn: {
one: {
// HTML 示例: <p>{{ $t("one.index", { mag: "我的"}) }}</p>
index: "你好 {mag} 世界" // {mag} 从 $t() 函数调用时获取指定的变量,
}
},
// 这是 "列表格式"
en: {
one: {
// HTML 示例: <p>{{ $t("one.index", ["我的"]) }}</p>
index: 'hello {0} world' // {0} 从 $t() 函数调用时获取指定的变量
}
},
// 这是复数形式, 函数也从 $t() 变成了 $tc()
ja: {
one: {
// HTML 示例: <p>{{ $tc("one.index", 1) }}</p> 结果: 这是我的世界
index: 'こんにちは、 世界 | 这是我的世界 | 这是你的世界' // {mag} 从 $tc() 函数调用时获取指定的变量
}
},
// 这是复数形式和具名格式的组合使用, 函数也从 $t() 变成了 $tc()
jw: {
one: {
// HTML 示例: <p>{{ $tc("one.index", 2, {mas: "这是"}) }}</p> 结果: 这是你的世界
index: 'こんにちは、 世界 | 这是我的世界 | {mas}你的世界' // {mag} 从 $tc() 函数调用时获取指定的变量
}
}
}
})
}).$mount('#app')
</script>
</html>
$te(key, locale) 使用指定的 locale 语言库
简单使用 Vue I18n (Vue2版本)
于 2021-10-29 10:36:53 首次发布