596 B
596 B
#### 国际化
用 `LocaleProvider` 包裹你的应用,并引用对应的语言包。
#### Localization
Wrap your app with `LocaleProvider`, and apply the corresponding language package.
<template>
<a-locale-provider :locale="enUS">
<a-pagination :defaultCurrent="1" :total="50" showSizeChanger />
</a-locale-provider>
</template>
<script>
// you should use import enUS from 'ant-design-vue/lib/locale-provider/en_US';
import enUS from 'ant-design-vue/locale-provider/en_US';
export default {
data(){
return {
enUS,
}
}
}
</script>