bootstrap-vue
Version:
Quickly integrate Bootstrap 4 components with Vue.js
19 lines (14 loc) • 393 B
JavaScript
import bFormGroup from './form-group';
import { registerComponents, vueUse } from '../../utils';
/* eslint-disable no-var, no-undef, guard-for-in, object-shorthand */
var components = {
bFormGroup: bFormGroup,
bFormFieldset: bFormGroup
};
var VuePlugin = {
install: function install(Vue) {
registerComponents(Vue, components);
}
};
vueUse(VuePlugin);
export default VuePlugin;