bootstrap-vue-3
Version:
Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript
25 lines (24 loc) • 456 B
TypeScript
// Props
export interface Props {
id?: string
imgHeight?: string
imgWidth?: string
background?: string
modelValue?: number
controls?: boolean
indicators?: boolean
interval?: number
noTouch?: boolean
noWrap?: boolean
}
// Emits
export interface Emits {
(e: 'sliding-start', value: Event): void
(e: 'sliding-end', value: Event): void
}
// Other
export interface ParentData {
background?: string
width?: string
height?: string
}