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

10 lines
301 B
JavaScript
Raw Normal View History

2020-09-30 08:21:04 +00:00
// based on vc-select 9.2.2
import Select from './Select';
import Option from './Option';
import { SelectPropTypes } from './PropTypes';
import OptGroup from './OptGroup';
Select.Option = Option;
Select.OptGroup = OptGroup;
export { Select, Option, OptGroup, SelectPropTypes };
export default Select;