We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a130a99 commit edde3bdCopy full SHA for edde3bd
packages/client/src/main.ts
@@ -28,15 +28,15 @@ import '~/assets/styles/main.css'
28
const routes = [
29
{ path: '/', component: Index },
30
{ path: '/overview', component: Overview },
31
- { path: '/components', component: Components },
32
- { path: '/pinia', component: PiniaPage },
33
- { path: '/router', component: RouterPage },
+ { path: '/components/:id?', component: Components },
+ { path: '/pinia/:id?', component: PiniaPage },
+ { path: '/router/:id?', component: RouterPage },
34
{ path: '/pages', component: Pages },
35
{ path: '/assets', component: Assets },
36
{ path: '/graph', component: Graph },
37
{ path: '/settings', component: Settings },
38
{ path: `/${CUSTOM_TAB_VIEW}/:name`, component: CustomTabView },
39
- { path: `/${CUSTOM_INSPECTOR_TAB_VIEW}/:name`, component: CustomInspectorTabView },
+ { path: `/${CUSTOM_INSPECTOR_TAB_VIEW}/:name/:id?`, component: CustomInspectorTabView },
40
]
41
42
const router = createRouter({
0 commit comments