summaryrefslogtreecommitdiff
path: root/docs/.vuepress/enhanceApp.js
blob: 799cf2088065cc334458c65477c48824a7723a38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// OpenBMC Imports
import "../../src/assets/styles/_obmc-custom.scss";
import BVToastMixin from "../../src/components/Mixins/BVToastMixin";

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


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

      // BMC Components and Mixins
      Vue.mixin('BVToastMixin', BVToastMixin);
}