mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-12-29 21:41:00 +00:00
17 lines
290 B
JavaScript
17 lines
290 B
JavaScript
import Vue from 'vue'
|
|
import VueRouter from 'vue-router'
|
|
// import router from './routes'
|
|
// import store from './store'
|
|
|
|
import App from './App.vue'
|
|
|
|
Vue.use(VueRouter)
|
|
|
|
new Vue({
|
|
el: '#app',
|
|
router,
|
|
// store,
|
|
components: { App },
|
|
// template: '<App />',
|
|
render: h => h(App)
|
|
}) |