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

8 lines
246 B
TypeScript
Raw Normal View History

2020-10-16 10:47:28 +00:00
import Select, { ExportedSelectProps as SelectProps } from './Select';
2020-10-07 14:49:01 +00:00
import Option from './Option';
import OptGroup from './OptGroup';
2020-10-16 10:47:28 +00:00
import { props } from './generate';
export { Option, OptGroup, SelectProps, props };
2020-10-07 14:49:01 +00:00
export default Select;