bootstrap-vue
Version:
Quickly integrate Bootstrap 4 components with Vue.js
21 lines (15 loc) • 387 B
JavaScript
import bProgress from './progress'
import bProgressBar from './progress-bar'
import { registerComponents, vueUse } from '../../utils'
/* eslint-disable no-var, no-undef, guard-for-in, object-shorthand */
const components = {
bProgress,
bProgressBar
}
const VuePlugin = {
install (Vue) {
registerComponents(Vue, components)
}
}
vueUse(VuePlugin)
export default VuePlugin