UNPKG

bootstrap-vue-3

Version:

Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript

23 lines (21 loc) 500 B
import type {Breakpoint, ColorVariant, TableField, TableItem, VerticalAlign} from '@/types' // Props export interface Props { caption?: string align?: VerticalAlign borderVariant?: ColorVariant captionTop?: boolean borderless?: boolean bordered?: boolean dark?: boolean fields?: Array<TableField> footClone?: boolean hover?: boolean items?: Array<TableItem> responsive?: boolean | Breakpoint small?: boolean striped?: boolean variant?: ColorVariant } // Emits // Other