Adjust spacing and imports.

This commit is contained in:
Oliver-Akins 2020-09-18 00:03:52 -06:00
parent 53ee0c34c1
commit 31a8315590

View file

@ -1,10 +1,6 @@
import Vue from 'vue'
import App from './App.vue'
import store from './store'
import Vue from 'vue';
import App from './App.vue';
Vue.config.productionTip = false
Vue.config.productionTip = false;
new Vue({
store,
render: h => h(App)
}).$mount('#app')
new Vue({render: h => h(App)}).$mount('#app');