feat: move extension/builder into vue component (#3479)

This commit is contained in:
dni ⚡
2025-11-10 10:05:08 +01:00
committed by GitHub
parent 6bac34fc6b
commit c2a3fbc6c0
9 changed files with 896 additions and 865 deletions
+5 -9
View File
@@ -148,15 +148,6 @@ const routes = [
scripts: ['/static/js/extensions.js']
}
},
{
path: '/extensions/builder',
name: 'ExtensionsBuilder',
component: DynamicComponent,
props: {
fetchUrl: '/extensions/builder',
scripts: ['/static/js/extensions_builder.js']
}
},
{
path: '/node',
name: 'Node',
@@ -196,6 +187,11 @@ const routes = [
path: '/account',
name: 'Account',
component: PageAccount
},
{
path: '/extensions/builder',
name: 'ExtensionsBuilder',
component: PageExtensionBuilder
}
]