UNPKG

bootstrap-vue

Version:

Quickly integrate Bootstrap 4 components with Vue.js

22 lines (17 loc) 481 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 */ var components = { bMedia: bMedia, bMediaAside: bMediaAside, bMediaBody: bMediaBody }; var VuePlugin = { install: function install(Vue) { registerComponents(Vue, components); } }; vueUse(VuePlugin); export default VuePlugin;