summaryrefslogtreecommitdiff
path: root/docs/.vuepress/enhanceApp.js
blob: 5a84f619dd5a192a5f0d2a450f34f5e5593113fc (plain)
1
2
3
4
5
6
7
8
9
10
import {
    AlertPlugin,
  } from 'bootstrap-vue';

import BmcAppPlugin from './bmcAppPlugin';

export default ({ Vue }) => {
      Vue.use(AlertPlugin);
      Vue.use(BmcAppPlugin);
}