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

33 lines
640 B
Vue
Raw Normal View History

2019-01-02 12:13:25 +00:00
<script>
import CN from '../index.zh-CN.md'
import US from '../index.en-US.md'
const md = {
cn: `# ConfigProvider 全局化配置
为组件提供统一的全局化配置`,
us: `# ConfigProvider
\`ConfigProvider\` provides a uniform configuration support for components.
`,
}
export default {
category: 'Components',
subtitle: '全局化配置',
cols: 1,
type: '其他',
title: 'ConfigProvider',
render () {
return (
<div>
<md cn={md.cn} us={md.us}/>
<api>
<template slot='cn'>
<CN/>
</template>
<US/>
</api>
</div>
)
},
}
</script>