Open in Web IDE
Quickly and easily edit multiple files in your project.
Edit
Edit this file only.
import Vue from 'vue';
import App from './App.vue';
import router from './router';
import store from './store';
import './styles/main.css';
Vue.config.productionTip = false;
new Vue({
router,
store,
render: h => h(App)
}).$mount('#app');