UNPKG

bootstrap-vue

Version:

Quickly integrate Bootstrap 4 components with Vue.js

23 lines (17 loc) 427 B
import bMedia from './media' import bMediaAside from './media-aside' import bMediaBody from './media-body' import { registerComponents, vueUse } from '../../utils' /* eslint-disable no-var, no-undef, guard-for-in, object-shorthand */ const components = { bMedia, bMediaAside, bMediaBody } const VuePlugin = { install (Vue) { registerComponents(Vue, components) } } vueUse(VuePlugin) export default VuePlugin