@@ -3,21 +3,21 @@ import Home from "../views/Home.vue";
33
44const routes = [
55 { path : "/" , component : Home } ,
6- // {
7- // path: "/number-theory",
8- // component: () => import("../views/NumberTheory.vue"),
9- // },
10- // {
11- // path: "/cryptography",
12- // component: () => import("../views/Cryptography.vue"),
13- // },
14- // { path: "/concepts", component: () => import("../views/Concepts.vue") },
15- // { path: "/demos", component: () => import("../views/Demo.vue") },
16- // { path: "/about", component: () => import("../views/About.vue") },
17- // {
18- // path: "/demos/:basePath/:hash",
19- // component: () => import("../views/Result.vue"),
20- // },
6+ {
7+ path : "/number-theory" ,
8+ component : ( ) => import ( "../views/NumberTheory.vue" ) ,
9+ } ,
10+ {
11+ path : "/cryptography" ,
12+ component : ( ) => import ( "../views/Cryptography.vue" ) ,
13+ } ,
14+ { path : "/concepts" , component : ( ) => import ( "../views/Concepts.vue" ) } ,
15+ { path : "/demos" , component : ( ) => import ( "../views/Demo.vue" ) } ,
16+ { path : "/about" , component : ( ) => import ( "../views/About.vue" ) } ,
17+ {
18+ path : "/demos/:basePath/:hash" ,
19+ component : ( ) => import ( "../views/Result.vue" ) ,
20+ } ,
2121] ;
2222
2323const router = createRouter ( {
0 commit comments