UNPKG

bootstrap-vue-next

Version:

Seamless integration of Vue 3, Bootstrap 5, and TypeScript for modern, type-safe UI development

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;