initial chart checkin

This commit is contained in:
Tim
2024-01-29 01:25:48 -04:00
parent ee021c9590
commit 29fcad1059
23 changed files with 490 additions and 42 deletions

View File

@@ -4,7 +4,7 @@ import { createRouter, createWebHistory } from 'vue-router'
const routes = [
{
path: '/',
component: () => import('@/layouts/default/Layout.vue'),
component: () => import('@/layouts/chart/ChartLayout.vue'),
children: [
{
path: '/',
@@ -12,8 +12,12 @@ const routes = [
// 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: "home" */ '@/views/Home.vue'),
component: () => import(/* webpackChunkName: "vaultview" */ '@/views/VaultView.vue'),
component: () => import(/* webpackChunkName: "create" */ '@/components/chart/ChartOrder.vue'),
},
{
path: '/create',
name: 'Create',
component: () => import(/* webpackChunkName: "create" */ '@/components/chart/ChartOrder.vue'),
},
{
path: '/vault',