欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue.js---i18n的使用

程序员文章站 2022-02-19 06:34:36
...

标签属性

 :placeholder="$t('pleaseSelectHint')"
口诀:加冒号,$t('')

标签内

 <a-button>{{ $t('delete') }}</a-button>
口诀:加双大括号,$t('')

.vue文件中js代码中的调用

this.title = this.$i18n.tc('createTask')
口诀:this.$i18n.tc('')

.js文件里调用

import i18n from '@/locales'			//头文件需引入
this.message = i18n.tc('createTask')			
口诀:先引入,再i18n.tc('')
相关标签: Vue.js vue vue.js