UNPKG

bootstrap-vue-3

Version:

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

18 lines (16 loc) 358 B
import type {ColorVariant, LinkTarget} from '@/types' // 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