Add desktop-dialog route to router

This commit is contained in:
filtered
2025-09-13 23:14:06 +10:00
parent b040bb4aff
commit dcfcdc74a2

View File

@@ -116,6 +116,12 @@ const router = createRouter({
name: 'DesktopUpdateView',
component: () => import('@/views/DesktopUpdateView.vue'),
beforeEnter: guardElectronAccess
},
{
path: 'desktop-dialog',
name: 'DesktopDialogView',
component: () => import('@/views/DesktopDialogView.vue'),
beforeEnter: guardElectronAccess
}
]
}