ant-design-vue/components/locale-provider/demo/index.vue

41 lines
912 B
Vue
Raw Normal View History

<script>
2019-01-12 11:33:27 +08:00
import Basic from './basic';
import All from './all';
import CN from '../index.zh-CN.md';
import US from '../index.en-US.md';
2018-03-21 13:31:55 +08:00
const md = {
cn: `## API
| 参数 | 说明 | 类型 | 默认值 |
| --- | --- | --- | --- |
| locale | 语言包配置语言包可到 \`antd/lib/locale-provider/\` 目录下寻找 | object | - |
`,
us: `## API
| Property | Description | Type | Default |
| -------- | ----------- | ---- | ------- |
| locale | language package setting, you can find the packages in this path: \`antd/lib/locale-provider/\` | object | - |
`,
2019-01-12 11:33:27 +08:00
};
export default {
category: 'Components',
subtitle: '国际化',
cols: 1,
type: 'Other',
title: 'LocaleProvider',
render () {
return (
<div>
<api>
<CN slot='cn' />
<US/>
</api>
<Basic />
<All />
2018-03-21 13:31:55 +08:00
<md cn={md.cn} us={md.us}/>
</div>
2019-01-12 11:33:27 +08:00
);
},
2019-01-12 11:33:27 +08:00
};
</script>