16fe912fbd
Co-authored-by: Nithin David Thomas <webofnithin@gmail.com> Co-authored-by: Sojan Jose <sojan@pepalo.com>
24 lines
576 B
JavaScript
Executable file
24 lines
576 B
JavaScript
Executable file
import Vue from 'vue';
|
|
import Router from 'vue-router';
|
|
import Home from './views/Home.vue';
|
|
|
|
Vue.use(Router);
|
|
|
|
export default new Router({
|
|
routes: [
|
|
{
|
|
path: '/',
|
|
name: 'home',
|
|
component: Home,
|
|
},
|
|
// {
|
|
// path: '/about',
|
|
// name: 'about',
|
|
// // route level code-splitting
|
|
// // this generates a separate chunk (about.[hash].js) for this route
|
|
// // which is lazy-loaded when the route is visited.
|
|
// component: () =>
|
|
// import(/* webpackChunkName: "about" */ './views/About.vue'),
|
|
// },
|
|
],
|
|
});
|