Skip to content
Snippets Groups Projects
Commit 2d106e55 authored by florimondmanca's avatar florimondmanca
Browse files

initial commit

parents
No related branches found
No related tags found
No related merge requests found
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './App'
import router from './router'
Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
template: '<App/>',
components: { App }
})
import Vue from 'vue'
import Router from 'vue-router'
import Home from '@/components/Home'
Vue.use(Router)
export default new Router({
routes: [
{
path: '/',
name: 'Home',
component: Home
}
]
})
This diff is collapsed.
This diff is collapsed.
import Vue from 'vue'
Vue.config.productionTip = false
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment