亲宝软件园·资讯

展开

vue.js国际化 vue-i18n插件的使用详解

lyqhn2012 人气:0

安装方法

1.使用CDN直接引用

<script src="https://unpkg.com/vuehttps://img.qb5200.com/download-x/dist/vue.js"></script>
<script src="https://unpkg.com/vue-i18nhttps://img.qb5200.com/download-x/dist/vue-i18n.js"></script>

2.NPM

$ npm install vue-i18n

3.Yarn

$ yarn add vue-i18n

使用方法

在这里只介绍vue的使用方法

<script>
/* 国际化使用规则 */
import Vue from 'vue'
import VueI18n from 'vue-i18n'

Vue.use(VueI18n)

const messages = {
 en: {
  message: {
   hello: 'world hello'
  }
 },
 zh: {
  message: {
   hello: '世界'
  }
 }
}

const i18n = new VueI18n({
 locale: 'zh',
 messages
})

export default {
 data () {
  return {
   hello: this.$t('message.hello')
  }
 },
 i18n
}

</script>

HTML

<div id="#app">
 <p>{{ $t("message.hello") }}</p>
</div>

vue-i18n插件使用参考文档

加载全部内容

相关教程
猜你喜欢
用户评论