UNPKG

bootstrap-vue

Version:

Quickly integrate Bootstrap 4 components with Vue.js

18 lines (13 loc) 347 B
import bBadge from './badge'; import { registerComponents, vueUse } from '../../utils'; /* eslint-disable no-var, no-undef, guard-for-in, object-shorthand */ var components = { bBadge: bBadge }; var VuePlugin = { install: function install(Vue) { registerComponents(Vue, components); } }; vueUse(VuePlugin); export default VuePlugin;