You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/select/demo/index.vue

57 lines
1.6 KiB

<script>
import Basic from './basic'
import Size from './size'
import Tags from './tags'
import Combobox from './combobox'
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 CN from '../index.zh-CN.md'
import US from '../index.en-US.md'
const md = {
cn: `# Select 选择器
下拉选择器
## 何时使用
- 弹出一个下拉菜单给用户选择操作用于代替原生的选择器或者需要一个更优雅的多选器时
- 当选项少时少于 5 建议直接将选项平铺使用 [Radio](/components/radio/)
## 代码演示`,
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.
- Utilizing [Radio](/components/radio/) is recommended when there are fewer total options (less than 5).
`,
}
export default {
render () {
return (
<div>
<md cn={md.cn} us={md.us}/>
<Basic/>
<Size/>
<Tags/>
<Combobox/>
<AutomaticTokenization/>
<LabelInValue/>
<Multiple/>
<Coordinate/>
<Optgroup/>
<SearchBox/>
<Search/>
<SelectUsers/>
<api>
<CN slot='cn' />
<US/>
</api>
</div>
)
},
}
</script>