refactor: move /account into vue component (#3467)

This commit is contained in:
dni ⚡
2025-11-07 18:17:15 +01:00
committed by GitHub
parent a40306f5cd
commit bd07f7a5ef
10 changed files with 1109 additions and 1076 deletions
+5 -9
View File
@@ -157,15 +157,6 @@ const routes = [
scripts: ['/static/js/extensions_builder.js']
}
},
{
path: '/account',
name: 'Account',
component: DynamicComponent,
props: {
fetchUrl: '/account',
scripts: ['/static/js/account.js']
}
},
{
path: '/node',
name: 'Node',
@@ -200,6 +191,11 @@ const routes = [
path: '/admin',
name: 'Admin',
component: PageAdmin
},
{
path: '/account',
name: 'Account',
component: PageAccount
}
]