Skip to content
Snippets Groups Projects
main.js 212 B
Newer Older
ivelov-vm's avatar
ivelov-vm committed
import Vue from 'vue'
import App from './App.vue'
import '../dist/output.css'
import router from './plugins/router'
ivelov-vm's avatar
ivelov-vm committed

Vue.config.productionTip = false

new Vue({
  router,
ivelov-vm's avatar
ivelov-vm committed
  render: h => h(App),
}).$mount('#app')