UNPKG

bootstrap-vue-next

Version:

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

10 lines (9 loc) 250 B
import { RouteLocationRaw } from 'vue-router'; export interface BreadcrumbItem { active?: boolean; disabled?: boolean; href?: string; text: string; to?: RouteLocationRaw; } export type BreadcrumbItemRaw = BreadcrumbItem | string;