feature(settings): catch all subpaths of the settings path in the router

This commit is contained in:
2026-06-04 19:14:49 +02:00
parent eea417013d
commit 8d6e87af16
+6
View File
@@ -43,6 +43,12 @@ const routes = [
path: '/settings', path: '/settings',
name: 'settings', name: 'settings',
component: SettingsView, component: SettingsView,
children: [
{
path: ':rest(.*)',
component: SettingsView
}
],
meta: { meta: {
title: () => i18n.global.t('preferences.settings') title: () => i18n.global.t('preferences.settings')
} }