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 Vue from 'vue';
import App from './App.vue' import App from './App.vue';
import store from './store'
Vue.config.productionTip = false Vue.config.productionTip = false;
new Vue({ new Vue({render: h => h(App)}).$mount('#app');
store,
render: h => h(App)
}).$mount('#app')