You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
596 B
29 lines
596 B
<cn>
|
|
#### 国际化
|
|
用 `LocaleProvider` 包裹你的应用,并引用对应的语言包。
|
|
</cn>
|
|
|
|
<us>
|
|
#### Localization
|
|
Wrap your app with `LocaleProvider`, and apply the corresponding language package.
|
|
</us>
|
|
|
|
```html
|
|
<template>
|
|
<a-locale-provider :locale="zhCN">
|
|
<a-pagination :defaultCurrent="1" :total="50" showSizeChanger />
|
|
</a-locale-provider>
|
|
</template>
|
|
<script>
|
|
// you should use import zhCN from 'ant-design-vue/lib/locale-provider/zh_CN';
|
|
import zhCN from 'ant-design-vue/locale-provider/zh_CN';
|
|
export default {
|
|
data(){
|
|
return {
|
|
zhCN,
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
```
|