UNPKG

bootstrap-vue-3

Version:

Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript

11 lines (8 loc) 211 B
export interface SelectOptionObject<T = unknown> { value: T text?: string html?: string disabled?: boolean } type SelectOption<T = unknown> = string | SelectOptionObject<T> export default SelectOption