UNPKG

bootstrap-vue

Version:

Quickly integrate Bootstrap 4 components with Vue.js

23 lines (17 loc) 425 B
import bButton from './button' import bButtonClose from './button-close' import { registerComponents, vueUse } from '../../utils' /* eslint-disable no-var, no-undef, guard-for-in, object-shorthand */ const components = { bButton, bBtn: bButton, bButtonClose, bBtnClose: bButtonClose } const VuePlugin = { install (Vue) { registerComponents(Vue, components) } } vueUse(VuePlugin) export default VuePlugin