mirror of
https://github.com/liamcottle/reticulum-meshchat.git
synced 2026-04-28 00:20:48 +00:00
organise routes
This commit is contained in:
parent
2d46c0fb8c
commit
46f28920f5
1 changed files with 3 additions and 3 deletions
|
|
@ -15,13 +15,13 @@ const router = createRouter({
|
|||
routes: [
|
||||
{ path: '/', redirect: '/messages' },
|
||||
{ path: '/about', name: "about", component: AboutPage },
|
||||
{ path: '/messages', name: "messages", component: MessagesPage },
|
||||
{ path: '/nomadnetwork', name: "nomadnetwork", component: NomadNetworkPage },
|
||||
{ path: '/settings', name: "settings", component: SettingsPage },
|
||||
{ path: '/interfaces', name: "interfaces", component: InterfacesPage },
|
||||
{ path: '/interfaces/add', name: "interfaces.add", component: AddInterfacePage },
|
||||
{ path: '/interfaces/edit', name: "interfaces.edit", component: AddInterfacePage, props: { interface_name: String } },
|
||||
{ path: '/messages', name: "messages", component: MessagesPage },
|
||||
{ path: '/network-visualiser', name: "network-visualiser", component: NetworkVisualiserPage },
|
||||
{ path: '/nomadnetwork', name: "nomadnetwork", component: NomadNetworkPage },
|
||||
{ path: '/settings', name: "settings", component: SettingsPage },
|
||||
],
|
||||
})
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue