refactor: move /admin into vue component (#3466)

This commit is contained in:
dni ⚡
2025-11-07 18:10:59 +01:00
committed by GitHub
parent 2fecec2623
commit a40306f5cd
39 changed files with 1444 additions and 1235 deletions
+5 -9
View File
@@ -139,15 +139,6 @@ const routes = [
}
}
},
{
path: '/admin',
name: 'Admin',
component: DynamicComponent,
props: {
fetchUrl: '/admin',
scripts: ['/static/js/admin.js']
}
},
{
path: '/extensions',
name: 'Extensions',
@@ -204,6 +195,11 @@ const routes = [
path: '/users',
name: 'Users',
component: PageUsers
},
{
path: '/admin',
name: 'Admin',
component: PageAdmin
}
]