more UI updates
This commit is contained in:
@@ -8,16 +8,18 @@ const routes = [
|
||||
children: [
|
||||
{
|
||||
path: '/',
|
||||
name: 'Home',
|
||||
// route level code-splitting
|
||||
// this generates a separate chunk (about.[hash].js) for this route
|
||||
// which is lazy-loaded when the route is visited.
|
||||
component: () => import(/* webpackChunkName: "create" */ '@/components/chart/ChartOrderPane.vue'),
|
||||
component: () => import(/* webpackChunkName: "chartorder" */ '@/components/chart/ChartOrderPane.vue'),
|
||||
},
|
||||
{
|
||||
path: '/create',
|
||||
name: 'Create',
|
||||
component: () => import(/* webpackChunkName: "create" */ '@/components/chart/ChartOrderPane.vue'),
|
||||
path: '/place',
|
||||
name: 'Place',
|
||||
// route level code-splitting
|
||||
// this generates a separate chunk (about.[hash].js) for this route
|
||||
// which is lazy-loaded when the route is visited.
|
||||
component: () => import(/* webpackChunkName: "chartorder" */ '@/components/chart/ChartOrderPane.vue'),
|
||||
},
|
||||
{
|
||||
path: '/vault',
|
||||
@@ -35,29 +37,36 @@ const routes = [
|
||||
// which is lazy-loaded when the route is visited.
|
||||
component: () => import(/* webpackChunkName: "ordersview" */ '@/views/OrdersView.vue'),
|
||||
},
|
||||
/*
|
||||
{
|
||||
path: '/create',
|
||||
name: 'Create',
|
||||
component: () => import(/!* webpackChunkName: "chartorder" *!/ '@/components/chart/ChartOrderPane.vue'),
|
||||
},
|
||||
{
|
||||
path: '/twap',
|
||||
name: 'TWAP',
|
||||
// route level code-splitting
|
||||
// this generates a separate chunk (about.[hash].js) for this route
|
||||
// which is lazy-loaded when the route is visited.
|
||||
component: () => import(/* webpackChunkName: "twap" */ '@/components/TimedOrder.vue'),
|
||||
component: () => import(/!* webpackChunkName: "twap" *!/ '@/components/TimedOrder.vue'),
|
||||
},
|
||||
{
|
||||
path: '/ladder',
|
||||
name: 'Ladder',
|
||||
component: () => import(/* webpackChunkName: "ladder" */ '@/components/LadderOrder.vue'),
|
||||
component: () => import(/!* webpackChunkName: "ladder" *!/ '@/components/LadderOrder.vue'),
|
||||
},
|
||||
{
|
||||
path: '/diagonal',
|
||||
name: 'Diagonal',
|
||||
component: () => import(/* webpackChunkName: "diagonal" */ '@/components/DiagonalOrder.vue'),
|
||||
component: () => import(/!* webpackChunkName: "diagonal" *!/ '@/components/DiagonalOrder.vue'),
|
||||
},
|
||||
{
|
||||
path: '/custom',
|
||||
name: 'Custom',
|
||||
component: () => import(/* webpackChunkName: "custom" */ '@/components/CustomOrder.vue'),
|
||||
component: () => import(/!* webpackChunkName: "custom" *!/ '@/components/CustomOrder.vue'),
|
||||
},
|
||||
*/
|
||||
],
|
||||
},
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user