bootstrap-vue
Version:
Quickly integrate Bootstrap 4 components with Vue.js
24 lines (19 loc) • 500 B
JavaScript
import bContainer from './container';
import bRow from './row';
import bCol from './col';
import bFormRow from './form-row';
import { registerComponents, vueUse } from '../../utils';
/* eslint-disable no-var, no-undef, guard-for-in, object-shorthand */
var components = {
bContainer: bContainer,
bRow: bRow,
bCol: bCol,
bFormRow: bFormRow
};
var VuePlugin = {
install: function install(Vue) {
registerComponents(Vue, components);
}
};
vueUse(VuePlugin);
export default VuePlugin;