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

12 lines
385 B
JavaScript
Raw Normal View History

2019-03-04 15:45:21 +08:00
// based on vc-select 8.9.0
2019-01-12 11:33:27 +08: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;