ant-design-vue/components/vc-select/OptGroup.tsx

16 lines
466 B
Vue
Raw Normal View History

2021-06-26 09:35:40 +08:00
import type { FunctionalComponent } from 'vue';
2020-10-07 22:49:01 +08:00
import type { DefaultOptionType } from './Select';
2020-10-07 22:49:01 +08:00
export type OptGroupProps = Omit<DefaultOptionType, 'options'>;
2020-10-07 22:49:01 +08:00
export interface OptionGroupFC extends FunctionalComponent<OptGroupProps> {
/** Legacy for check if is a Option Group */
isSelectOptGroup: boolean;
}
const OptGroup: OptionGroupFC = () => null;
OptGroup.isSelectOptGroup = true;
OptGroup.displayName = 'ASelectOptGroup';
2020-10-07 22:49:01 +08:00
export default OptGroup;