summaryrefslogtreecommitdiff
path: root/docs/.vuepress/enhanceApp.js
blob: c0f3dfbaed6b317bf4f4c83b5aaed07d5ee2b9ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import "./styles/_index.scss";
import Alert from "../../src/components/Global/Alert";

// Bootstrap-vue Plugin imports
import {
    AlertPlugin,
    ButtonPlugin,
    ToastPlugin
  } from 'bootstrap-vue';


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

      // BMC Components and Mixins
      Vue.component('Alert', Alert);
}