1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
| import { createRouter, createWebHistory } from "vue-router"; import Home from "../views/Home.vue"; import About from "../views/About.vue"; import Changelog from "../views/About/Changelog.vue"; import GitHub from "../views/About/GitHub.vue"; import Guide from "../views/About/Guide.vue"; import aboutIndex from "../views/About/index.vue"; import Reference from "../views/About/Reference.vue"; const routes = [ { path: "/", name: "Home", component: Home, }, { path: "/about", name: "About", component: About, children: [ { path: "", component: aboutIndex }, { path: "changelog", component: Changelog }, { path: "gitHub", component: GitHub }, { path: "guide", component: Guide }, { path: "reference", component: Reference } ] }, ];
const router = createRouter({ history: createWebHistory(process.env.BASE_URL), routes, });
export default router;
|