bootstrap-vue-3
Version:
Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript
16 lines (14 loc) • 316 B
TypeScript
import type {ColorVariant} from '../..'
// Props
export interface Props {
buttonClass?: string | Array<unknown> | Record<string, unknown>
active?: boolean
activeClass?: string
disabled?: boolean
variant?: ColorVariant
}
// Emits
export interface Emits {
(e: 'click', value: MouseEvent): void
}
// Other