UNPKG

bootstrap-vue-3

Version:

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

14 lines (13 loc) 283 B
import type {BLinkProps} from '..' // Props export interface Props extends Omit<BLinkProps, 'event' | 'routerTag'> { active?: boolean ariaCurrent?: string disabled?: boolean text?: string } // Emits export interface Emits { (e: 'click', value: MouseEvent): void } // Other