Add TCP Middlewares support
This commit is contained in:
parent
679def0151
commit
fc9f41b955
134 changed files with 5865 additions and 1852 deletions
|
@ -156,6 +156,32 @@ const routes = [
|
|||
protocol: 'tcp',
|
||||
title: 'TCP Service Detail'
|
||||
}
|
||||
},
|
||||
{
|
||||
path: 'middlewares',
|
||||
name: 'tcpMiddlewares',
|
||||
components: {
|
||||
default: () => import('pages/tcp/Middlewares.vue'),
|
||||
NavBar: () => import('components/_commons/ToolBar.vue')
|
||||
},
|
||||
props: { default: true, NavBar: true },
|
||||
meta: {
|
||||
protocol: 'tcp',
|
||||
title: 'TCP Middlewares'
|
||||
}
|
||||
},
|
||||
{
|
||||
path: 'middlewares/:name',
|
||||
name: 'tcpMiddlewareDetail',
|
||||
components: {
|
||||
default: () => import('pages/_commons/MiddlewareDetail.vue'),
|
||||
NavBar: () => import('components/_commons/ToolBar.vue')
|
||||
},
|
||||
props: { default: true, NavBar: true },
|
||||
meta: {
|
||||
protocol: 'tcp',
|
||||
title: 'TCP Middleware Detail'
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue