This commit is contained in:
2018-11-05 17:33:15 +00:00
parent 18d549f019
commit 6d746e15d1
46 changed files with 17363 additions and 0 deletions

26
app/ayanova/src/router.js Normal file
View File

@@ -0,0 +1,26 @@
import Vue from "vue";
import Router from "vue-router";
import Home from "./views/Home.vue";
Vue.use(Router);
export default new Router({
mode: "history",
base: process.env.BASE_URL,
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")
}
]
});