bootstrap-vue
Version:
Quickly integrate Bootstrap 4 components with Vue.js
18 lines (13 loc) • 363 B
JavaScript
import bScrollspy from './scrollspy';
import { registerDirectives, vueUse } from '../../utils';
/* eslint-disable no-var, no-undef, guard-for-in, object-shorthand */
var directives = {
bScrollspy: bScrollspy
};
var VuePlugin = {
install: function install(Vue) {
registerDirectives(Vue, directives);
}
};
vueUse(VuePlugin);
export default VuePlugin;