bootstrap-vue
Version:
BootstrapVue, with over 40 plugins and more than 75 custom components, provides one of the most comprehensive implementations of Bootstrap v4 components and grid system for Vue.js. With extensive and automated WAI-ARIA accessibility markup.
17 lines (13 loc) • 551 B
JavaScript
// This index file is used to create the legacy es/index.js
// and will be removed once the `es/` build has been removed.
// It has no top-level named exports
import { installFactory } from './utils/plugins'
import { setConfig } from './utils/config'
import { componentsPlugin } from './components'
import { directivesPlugin } from './directives'
const BootstrapVue = {
install: installFactory({ plugins: { componentsPlugin, directivesPlugin } }),
setConfig: setConfig
}
// Default export is the BootstrapVue plugin
export default BootstrapVue