UNPKG

bootstrap-vue-3

Version:

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

18 lines (16 loc) 356 B
import type {ColorVariant, LinkTarget} from '../..' // Props export interface Props { href?: string linkClass?: Array<unknown> | Record<string, unknown> | string active?: boolean disabled?: boolean rel?: string target?: LinkTarget variant?: ColorVariant } // Emits export interface Emits { (e: 'click', value: MouseEvent): void } // Other