ant-design-vue/components/auto-complete/demo/index.vue

51 lines
1.1 KiB
Vue
Raw Normal View History

2018-03-01 04:34:31 +00:00
<script>
2019-01-12 03:33:27 +00:00
import Basic from './basic';
import CertainCategory from './certain-category';
import Custom from './custom';
import NonCaseSensitive from './non-case-sensitive';
import Options from './options';
import UncertainCategory from './uncertain-category';
2018-03-01 04:34:31 +00:00
2019-01-12 03:33:27 +00:00
import CN from '../index.zh-CN.md';
import US from '../index.en-US.md';
2018-03-01 04:34:31 +00:00
const md = {
cn: `# AutoComplete 自动完成
输入框自动完成功能
## 何时使用
需要自动完成时
## 代码演示`,
us: `# AutoComplete
Autocomplete function of input field.
## When To Use
When there is a need for autocomplete functionality.
## Examples
2018-03-01 04:34:31 +00:00
`,
2019-01-12 03:33:27 +00:00
};
2018-03-01 04:34:31 +00:00
export default {
2018-03-20 13:48:01 +00:00
category: 'Components',
subtitle: '自动完成',
type: 'Data Entry',
zhType: '数据录入',
2018-03-20 13:48:01 +00:00
cols: 2,
title: 'AutoComplete',
2018-03-01 04:34:31 +00:00
render () {
return (
<div>
<md cn={md.cn} us={md.us}/>
<Basic/>
<CertainCategory/>
<Custom/>
<NonCaseSensitive/>
<Options/>
<UncertainCategory/>
<api>
<CN slot='cn' />
<US/>
</api>
</div>
2019-01-12 03:33:27 +00:00
);
2018-03-01 04:34:31 +00:00
},
2019-01-12 03:33:27 +00:00
};
2018-03-01 04:34:31 +00:00
</script>
2018-03-11 07:27:34 +00:00