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 | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletions(-)
diff --git a/screen_standard/src/router/index.js b/screen_standard/src/router/index.js
index e58491f..8d7c178 100644
--- a/screen_standard/src/router/index.js
+++ b/screen_standard/src/router/index.js
@@ -1,5 +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),
@@ -7,7 +9,12 @@
{
path: '/',
name: 'home',
- component: HomeView
+ component: indexView
+ },
+ {
+ path: '/process',
+ name: 'process',
+ component: processView
}
]
})
--
Gitblit v1.9.3