ant-design-vue/components/vc-select/index.js

10 lines
285 B
JavaScript
Raw Normal View History

2018-03-14 10:36:52 +08:00
// based on vc-select 7.7.5
2018-02-06 17:22:36 +08:00
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