UNPKG

bootstrap-vue

Version:

BootstrapVue provides one of the most comprehensive implementations of Bootstrap 4 components and grid system for Vue.js and with extensive and automated WAI-ARIA accessibility markup.

30 lines (25 loc) 623 B
import bNav from './nav' import bNavItem from './nav-item' import bNavText from './nav-text' import bNavForm from './nav-form' import bNavItemDropdown from './nav-item-dropdown' import dropdownPlugin from '../dropdown' import { registerComponents, vueUse } from '../../utils/plugins' const components = { bNav, bNavItem, bNavText, bNavForm, bNavItemDropdown, bNavItemDd: bNavItemDropdown, bNavDropdown: bNavItemDropdown, bNavDd: bNavItemDropdown } const VuePlugin = { install (Vue) { registerComponents(Vue, components) Vue.use(dropdownPlugin) } } vueUse(VuePlugin) export default VuePlugin