mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 13:08:48 +08:00
10 lines
285 B
JavaScript
10 lines
285 B
JavaScript
// based on vc-select 7.7.5
|
|
import Select from './Select'
|
|
import Option from './Option'
|
|
import { SelectPropTypes } from './PropTypes'
|
|
import OptGroup from './OptGroup'
|
|
Select.Option = Option
|
|
Select.OptGroup = OptGroup
|
|
export { Option, OptGroup, SelectPropTypes }
|
|
export default Select
|