bootstrap-vue
Version:
Quickly integrate Bootstrap 4 components with Vue.js
28 lines (23 loc) • 664 B
JavaScript
import bCard from './card';
import bCardHeader from './card-header';
import bCardBody from './card-body';
import bCardFooter from './card-footer';
import bCardImg from './card-img';
import bCardGroup from './card-group';
import { registerComponents, vueUse } from '../../utils';
/* eslint-disable no-var, no-undef, guard-for-in, object-shorthand */
var components = {
bCard: bCard,
bCardHeader: bCardHeader,
bCardBody: bCardBody,
bCardFooter: bCardFooter,
bCardImg: bCardImg,
bCardGroup: bCardGroup
};
var VuePlugin = {
install: function install(Vue) {
registerComponents(Vue, components);
}
};
vueUse(VuePlugin);
export default VuePlugin;