UNPKG

bootstrap-vue-next

Version:

BootstrapVueNext is an early and lovely component library for Vue 3 & Nuxt 3 based on Bootstrap 5 and Typescript.

16 lines (15 loc) 434 B
import { Slot } from 'vue'; import { ClassValue } from './AnyValuedAttributes'; export interface TabType { id: string; title?: string; active: boolean; buttonId: string; disabled: boolean; titleComponent?: Slot; titleItemClass?: () => ClassValue; titleLinkAttrs?: () => Record<string, unknown>; titleLinkClass?: () => ClassValue; onClick?: (event: Event) => void; el: HTMLElement | null; }