UNPKG

bootstrap-vue-3

Version:

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

18 lines (17 loc) 386 B
import type {ColorVariant} from '..' // Props export interface Props { dismissLabel?: string dismissible?: boolean fade?: boolean modelValue?: boolean | number show?: boolean variant?: ColorVariant } // Emits export interface Emits { (e: 'dismissed'): void (e: 'close-countdown', value: number): void (e: 'update:modelValue', value: boolean | number): void } // Other