Skip to content

Commit

Permalink
Add join route
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvanmele committed Nov 26, 2024
1 parent 4a75917 commit d367018
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions src/router/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,18 @@ const routes = [
},
{
path: "association",
name: "Association",
component: () => import("@/views/Association.vue"),
children: [
{
path: "",
name: "Association",
component: () => import("@/views/Association.vue"),
},
{
path: "join",
name: "Join",
component: () => import("@/views/Join.vue"),
},
],
},
{
path: "contribute",
Expand Down

0 comments on commit d367018

Please sign in to comment.