mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-03 20:58:09 +08:00
46 lines
1.3 KiB
Markdown
46 lines
1.3 KiB
Markdown
## Internationalization
|
|
|
|
The default language of Element is Chinese. If you wish to use another language, you'll need to do some i18n configuration. In your entry file, if you are importing Element entirely:
|
|
|
|
```javascript
|
|
import Vue from 'vue'
|
|
import ElementUI from 'element-ui'
|
|
import locale from 'element-ui/lib/locale/lang/en'
|
|
|
|
Vue.use(ElementUI, { locale })
|
|
```
|
|
|
|
Or if you are importing Element on demand:
|
|
|
|
```javascript
|
|
import Vue from 'vue'
|
|
import { Button, Select } from 'element-ui'
|
|
import lang from 'element-ui/lib/locale/lang/en'
|
|
import locale from 'element-ui/lib/locale'
|
|
|
|
// configure language
|
|
locale.use(lang)
|
|
|
|
// import components
|
|
Vue.component(Button.name, Button)
|
|
Vue.component(Select.name, Select)
|
|
```
|
|
|
|
The Chinese language pack is imported by default, even if you're using another language. But with `IgnorePlugin` provided by webpack you can ignore it when building:
|
|
|
|
webpack.config.js
|
|
```javascript
|
|
{
|
|
plugins: [
|
|
new webpack.IgnorePlugin(/element-ui\/lib\/locale\/lang\/zh-cn/)
|
|
]
|
|
}
|
|
```
|
|
|
|
Currently Element ships with the following languages:
|
|
- Chinese
|
|
- English
|
|
- German
|
|
|
|
If your target language is not included, you are more than welcome to contribute: just add another language config [here](https://github.com/ElemeFE/element/tree/master/src/locale/lang) and create a pull request.
|