You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
471 B
15 lines
471 B
3 years ago
|
import { FunctionalComponent } from 'vue';
|
||
|
import { OptionGroupData } from '../vc-select/interface';
|
||
|
|
||
|
export type OptGroupProps = Omit<OptionGroupData, 'options'>;
|
||
|
|
||
|
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 = 'AAutoCompleteOptGroup';
|
||
|
export default OptGroup;
|