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') -// }); -