From 4ca4e5271d03989e41bb5c0d6914a1dec380e47b Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期二, 22 八月 2023 11:08:06 +0800
Subject: [PATCH] 平台端新需求
---
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