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

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


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

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