@vectrejs/vectre
Version:
Complete implementation of Spectre.css on Vue 2.x
19 lines (18 loc) • 482 B
TypeScript
import * as tsx from 'vue-tsx-support';
export interface FormSelectOptionProps {
value?: string;
label?: string;
disabled?: boolean;
selected?: boolean;
}
export declare const FormSelectOption: tsx.TsxComponent<import("vue").default, {} & {
disabled?: boolean;
label?: string | number;
value?: string | number;
selected?: boolean;
}, {}, {}, {
disabled: boolean;
value: string | number;
label: string | number;
selected: boolean;
}>;