From 0543cf35dab724aa43c22f74909fc07b0fa98fa8 Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Fri, 19 Apr 2024 10:04:32 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=B5=8C=E5=85=A5=E5=BC=8F):=20div?= =?UTF-8?q?=E5=B5=8C=E5=85=A5=E6=94=AF=E6=8C=81=E6=96=B0=E5=A2=9E=E4=BB=AA?= =?UTF-8?q?=E8=A1=A8=E6=9D=BF=E5=92=8C=E6=96=B0=E5=A2=9E=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=A4=A7=E5=B1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-frontend/src/router/embedded.ts | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/core/core-frontend/src/router/embedded.ts b/core/core-frontend/src/router/embedded.ts index 908178909c..61a9b4e939 100644 --- a/core/core-frontend/src/router/embedded.ts +++ b/core/core-frontend/src/router/embedded.ts @@ -2,7 +2,22 @@ import { createRouter, createWebHashHistory } from 'vue-router' import type { RouteRecordRaw } from 'vue-router' import type { App } from 'vue' -export const routes: AppRouteRecordRaw[] = [] +export const routes: AppRouteRecordRaw[] = [ + { + path: '/dvCanvas', + name: 'dvCanvas', + hidden: true, + meta: {}, + component: () => import('@/views/data-visualization/index.vue') + }, + { + path: '/dashboard', + name: 'dashboard', + hidden: true, + meta: {}, + component: () => import('@/views/dashboard/index.vue') + } +] const router = createRouter({ history: createWebHashHistory(),