bootstrap-vue-3
Version:
Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript
14 lines (13 loc) • 299 B
TypeScript
import type {BLinkProps} from '@/types/components'
// 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