From 2cef955017c735c2828e69f878d3d6b44200074f Mon Sep 17 00:00:00 2001
From: k94314517 <8417338+k94314517@user.noreply.gitee.com>
Date: 星期二, 22 八月 2023 16:54:57 +0800
Subject: [PATCH] 111
---
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