ant-design-vue/components/select/demo/index.vue

72 lines
2.0 KiB
Vue
Raw Normal View History

2018-02-26 10:44:06 +00:00
<script>
2019-01-12 03:33:27 +00:00
import Basic from './basic';
import Size from './size';
import Tags from './tags';
import AutomaticTokenization from './automatic-tokenization';
import LabelInValue from './label-in-value';
import Multiple from './multiple';
import Coordinate from './coordinate';
import Optgroup from './optgroup';
import SearchBox from './search-box';
import Search from './search';
import SelectUsers from './select-users';
import Suffix from './suffix';
import HideSelected from './hide-selected';
import CustomDropdownMenu from './custom-dropdown-menu';
2018-02-26 10:44:06 +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-02-26 10:44:06 +00:00
const md = {
cn: `# Select 选择器
下拉选择器
## 何时使用
- 弹出一个下拉菜单给用户选择操作用于代替原生的选择器或者需要一个更优雅的多选器时
2018-04-07 11:10:34 +00:00
- 当选项少时少于 5 建议直接将选项平铺使用 [Radio](/ant-design/components/radio-cn/)
2018-02-27 04:14:29 +00:00
2018-02-26 10:44:06 +00:00
## 代码演示`,
us: `# Select
Select component to select value from options.
## When To Use
- A dropdown menu for displaying choices - an elegant alternative to the native \`<select>\` element.
2018-04-07 11:10:34 +00:00
- Utilizing [Radio](/ant-design/components/radio/) is recommended when there are fewer total options (less than 5).
2018-03-20 13:48:01 +00:00
## Examples `,
2019-01-12 03:33:27 +00:00
};
2018-02-26 10:44:06 +00:00
export default {
2018-03-20 13:48:01 +00:00
category: 'Components',
subtitle: '选择器',
type: 'Data Entry',
title: 'Select',
2018-02-26 10:44:06 +00:00
render () {
return (
2018-03-11 07:27:34 +00:00
<div id='components-select-demo'>
2018-02-26 10:44:06 +00:00
<md cn={md.cn} us={md.us}/>
<Basic/>
<Size/>
<Tags/>
<AutomaticTokenization/>
<LabelInValue/>
<Multiple/>
<Coordinate/>
<Optgroup/>
<SearchBox/>
<Search/>
<SelectUsers/>
2018-12-11 03:40:27 +00:00
<Suffix/>
<HideSelected />
<CustomDropdownMenu />
2018-02-26 10:44:06 +00:00
<api>
<CN slot='cn' />
<US/>
</api>
</div>
2019-01-12 03:33:27 +00:00
);
2018-02-26 10:44:06 +00:00
},
2019-01-12 03:33:27 +00:00
};
2018-02-26 10:44:06 +00:00
</script>
2018-03-11 07:27:34 +00:00
<style>
#components-select-demo .ant-select {
margin: 0 8px 10px 0;
}
</style>
>