blob: 5a84f619dd5a192a5f0d2a450f34f5e5593113fc [file] [log] [blame]
Derick Montague71650ff2020-03-03 06:11:48 -06001import {
2 AlertPlugin,
3 } from 'bootstrap-vue';
4
5import BmcAppPlugin from './bmcAppPlugin';
6
7export default ({ Vue }) => {
8 Vue.use(AlertPlugin);
9 Vue.use(BmcAppPlugin);
10}