From 6be1bcd1310f34301c5eb57925cef5558eb4f9d7 Mon Sep 17 00:00:00 2001 From: Alfred Gutierrez Date: Wed, 7 Oct 2020 20:37:53 -0700 Subject: [PATCH] Update main.js --- www/src/main.js | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/www/src/main.js b/www/src/main.js index 650f605..7b64a61 100644 --- a/www/src/main.js +++ b/www/src/main.js @@ -5,17 +5,13 @@ import App from './App.vue' import 'bootstrap/dist/css/bootstrap.css'; import 'bootstrap-vue/dist/bootstrap-vue.css'; -// import("hello").then(mod => { - // Vue.prototype.$mp4 = mod; +Vue.use(BootstrapVue); + +Vue.config.productionTip = false + +new Vue({ + render: h => h(App), +}).$mount('#app') - Vue.use(BootstrapVue); - - Vue.config.productionTip = false - - new Vue({ - render: h => h(App), - }).$mount('#app') -// }); -