bootstrap-vue-3
Version:
Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript
18 lines (16 loc) • 392 B
TypeScript
// Props
export interface Props {
id?: string
title?: string
active?: boolean
buttonId?: string
disabled?: boolean
lazy?: boolean
noBody?: boolean | string
tag?: string
titleItemClass?: Array<unknown> | Record<string, unknown> | string
titleLinkAttributes?: Record<string, unknown>
titleLinkClass?: Array<unknown> | Record<string, unknown> | string
}
// Emits
// Other