bootstrap-vue
Version:
Quickly integrate Bootstrap 4 components with Vue.js
20 lines (14 loc) • 355 B
JavaScript
import bFormInput from './form-input'
import { registerComponents, vueUse } from '../../utils'
/* eslint-disable no-var, no-undef, guard-for-in, object-shorthand */
const components = {
bFormInput,
bInput: bFormInput
}
const VuePlugin = {
install (Vue) {
registerComponents(Vue, components)
}
}
vueUse(VuePlugin)
export default VuePlugin