From 8d6e87af164290e1c75c60a97b1b896a863a2131 Mon Sep 17 00:00:00 2001 From: Jakob Scheid Date: Thu, 4 Jun 2026 19:14:49 +0200 Subject: [PATCH] feature(settings): catch all subpaths of the settings path in the router --- src/router/index.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/router/index.js b/src/router/index.js index e3caa49..31622de 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -43,6 +43,12 @@ const routes = [ path: '/settings', name: 'settings', component: SettingsView, + children: [ + { + path: ':rest(.*)', + component: SettingsView + } + ], meta: { title: () => i18n.global.t('preferences.settings') }