From b70b5e9cf0d7c1ef66e7ef98f2a1f5edd8565891 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Fri, 19 Mar 2021 14:23:46 +0100 Subject: feat: reset vue projet to start --- src/main.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/main.js (limited to 'src/main.js') diff --git a/src/main.js b/src/main.js new file mode 100644 index 0000000..1329a63 --- /dev/null +++ b/src/main.js @@ -0,0 +1,15 @@ +import Vue from 'vue'; +import App from './App.vue'; +import router from './router'; +import store from './store'; + +import { BootstrapVue } from 'bootstrap-vue'; + +Vue.config.productionTip = false; +Vue.use(BootstrapVue); + +new Vue({ + router, + store, + render: h => h(App) +}).$mount('#app') -- cgit v1.2.3-18-g5258