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) 380 B
import { ref } from "vue"; import { b as breadcrumbPluginKey } from "../../../keys-41Cw9q6f.mjs"; const breadcrumbPlugin = { install(app) { const items = ref([]); const reset = () => { items.value.splice(0, items.value.length); }; app.provide(breadcrumbPluginKey, { items, reset }); } }; export { breadcrumbPlugin }; //# sourceMappingURL=index.mjs.map