Skip to content

Commit

Permalink
move routes in route list
Browse files Browse the repository at this point in the history
  • Loading branch information
liamcottle committed Nov 28, 2024
1 parent 7d0334b commit d03f151
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,18 @@ const router = createRouter({
props: true,
component: () => import("./components/pages/NodeMessagesPage.vue"),
},
{
name: "node.settings",
path: '/nodes/:nodeId/settings',
props: true,
component: () => import("./components/pages/settings/NodeSettingsPage.vue"),
},
{
name: "node.settings.user",
path: '/nodes/:nodeId/settings/user',
props: true,
component: () => import("./components/pages/settings/NodeUserSettingsPage.vue"),
},
{
name: "node.traceroutes",
path: '/nodes/:nodeId/traceroutes',
Expand All @@ -61,18 +73,6 @@ const router = createRouter({
props: true,
component: () => import("./components/pages/TraceRoutePage.vue"),
},
{
name: "node.settings",
path: '/nodes/:nodeId/settings',
props: true,
component: () => import("./components/pages/settings/NodeSettingsPage.vue"),
},
{
name: "node.settings.user",
path: '/nodes/:nodeId/settings/user',
props: true,
component: () => import("./components/pages/settings/NodeUserSettingsPage.vue"),
},
],
});

Expand Down

0 comments on commit d03f151

Please sign in to comment.