From 9744095cc2b64e6f5cd3492abb52268afc4921bb Mon Sep 17 00:00:00 2001
From: Mr.Zhang <710666463@qq.com>
Date: 星期二, 22 八月 2023 09:10:50 +0800
Subject: [PATCH] 折线图

---
 screen_standard/src/router/index.js |   11 ++++++-----
 1 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/screen_standard/src/router/index.js b/screen_standard/src/router/index.js
index 7377b96..8d7c178 100644
--- a/screen_standard/src/router/index.js
+++ b/screen_standard/src/router/index.js
@@ -1,6 +1,7 @@
 import { createRouter, createWebHistory } from 'vue-router'
 import HomeView from '../views/HomeView.vue'
 import indexView from '../views/index.vue'
+import processView from '../views/process.vue'
 
 const router = createRouter({
   history: createWebHistory(import.meta.env.BASE_URL),
@@ -10,11 +11,11 @@
       name: 'home',
       component: indexView
     },
-    // {
-    //   path: '/index',
-    //   name: 'index',
-    //   component: indexView
-    // }
+    {
+      path: '/process',
+      name: 'process',
+      component: processView
+    }
   ]
 })
 

--
Gitblit v1.9.3