diff --git a/src/router/index.ts b/src/router/index.ts index f7f7755..8ec9905 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -2,6 +2,7 @@ import { createRouter, createWebHashHistory, RouteRecordRaw } from 'vue-router' import test from './module/test' import myInfo from './module/myInfo' const routes: Array = [ + { path: '/echarts', name: 'echartsScreen', @@ -10,6 +11,14 @@ const routes: Array = [ icon: '', }, component: () => import('views/echarts/index.vue'), + },{ + path: '/', + name: 'index', + meta: { + title: '', + icon: '', + }, + component: () => import('views/Index.vue'), }, { path: '/screen/sharePlatform',