UNPKG

generator-prospa

Version:

Create fully working Single Page Applications using various technology combinations

11 lines (8 loc) 175 B
import Vue from 'vue' import App from './App.vue' import router from './router' Vue.config.productionTip = false new Vue({ router, render: h => h(App) }).$mount('#app')