corp homepage

This commit is contained in:
Tim
2024-04-13 17:02:03 -04:00
parent dd9fbb7af7
commit 3c755c27af
10 changed files with 175 additions and 9 deletions

View File

@@ -2,6 +2,16 @@
import { createRouter, createWebHistory } from 'vue-router'
const routes = [
{
path: '/corp',
component: () => import('@/corp/CorpLayout.vue'),
children: [
{
path: '',
component: () => import(/* webpackChunkName: "vaultview" */ '@/corp/Home.vue'),
}
]
},
{
path: '/',
component: () => import('@/layouts/chart/ChartLayout.vue'),