# vue-i18n
**Repository Path**: uyghurjava/vue-i18n
## Basic Information
- **Project Name**: vue-i18n
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 1
- **Created**: 2017-05-22
- **Last Updated**: 2020-12-19
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# vue-i18n
Internationalization plugin of VueJS 1.x.
[Live demo](http://jinzhe.github.io/vue-i18n/)
# How to use?
1.Import plugin in your entry app.js.
```
import VueI18n from './vue-i18n.js'
import VueI18nData from './i18n.js'
Vue.use(VueI18n, VueI18nData)
```
2.Configure language packs
```
export default {
default: 'cn',
data: {
cn: {
name:"金哲",
menu:{
goods:"商品管理",
order:"订单管理",
}
},
en: {
name:"ZEE.KIM",
menu:{
goods:"GOODS",
order:"ORDER",
}
},
}
}
```
3.Write some code to init in app.vue.
```
```
# Conatct
- Tencent QQ Group: 240319632
- E-mail: 129@jinzhe.net