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

12 lines
385 B
JavaScript
Raw Normal View History

2019-01-08 15:03:13 +00:00
// based on vc-select 8.7.0
2019-01-12 03:33:27 +00:00
import ProxySelect, { Select } from './Select';
import Option from './Option';
import { SelectPropTypes } from './PropTypes';
import OptGroup from './OptGroup';
Select.Option = Option;
Select.OptGroup = OptGroup;
ProxySelect.Option = Option;
ProxySelect.OptGroup = OptGroup;
export { Select, Option, OptGroup, SelectPropTypes };
export default ProxySelect;