generated from Seekra/repository-template
feature(settings): catch all subpaths of the settings path in the router
This commit is contained in:
@@ -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')
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user