fix(client): cannot show some setting pages

Fix #9043
This commit is contained in:
syuilo
2022-08-07 11:16:22 +09:00
parent 395e18e584
commit cabbe8c308
2 changed files with 23 additions and 1 deletions

View File

@ -105,6 +105,10 @@ export const routes = [{
path: '/sounds',
name: 'sounds',
component: page(() => import('./pages/settings/sounds.vue')),
}, {
path: '/plugin/install',
name: 'plugin',
component: page(() => import('./pages/settings/plugin.install.vue')),
}, {
path: '/plugin',
name: 'plugin',
@ -149,6 +153,18 @@ export const routes = [{
path: '/preferences-backups',
name: 'preferences-backups',
component: page(() => import('./pages/settings/preferences-backups.vue')),
}, {
path: '/custom-css',
name: 'general',
component: page(() => import('./pages/settings/custom-css.vue')),
}, {
path: '/account-info',
name: 'other',
component: page(() => import('./pages/settings/account-info.vue')),
}, {
path: '/delete-account',
name: 'other',
component: page(() => import('./pages/settings/delete-account.vue')),
}, {
path: '/other',
name: 'other',