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