UNPKG

bootstrap-vue

Version:

BootstrapVue provides one of the most comprehensive implementations of Bootstrap 4 components and grid system for Vue.js and with extensive and automated WAI-ARIA accessibility markup.

27 lines (22 loc) 511 B
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/plugins' const components = { bCard, bCardHeader, bCardBody, bCardFooter, bCardImg, bCardGroup } const VuePlugin = { install (Vue) { registerComponents(Vue, components) } } vueUse(VuePlugin) export default VuePlugin