bootstrap-vue-3
Version:
Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript
18 lines (17 loc) • 321 B
TypeScript
// Props
export interface Props {
modelValue?: boolean
bodyScrolling?: boolean
backdrop?: boolean
placement?: string
title?: string
}
// Emits
export interface Emits {
(e: 'update:modelValue', value: boolean): void
(e: 'show'): void
(e: 'shown'): void
(e: 'hide'): void
(e: 'hidden'): void
}
// Other