From e0b0d19b4b95abed5cdb2e5e8933e07c369add62 Mon Sep 17 00:00:00 2001 From: jiangping <jp@doumee.com> Date: 星期一, 21 八月 2023 10:04:50 +0800 Subject: [PATCH] Merge branch 'master' of http://139.186.142.91:10010/r/productDev/dmMes --- screen_standard/src/router/index.js | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/screen_standard/src/router/index.js b/screen_standard/src/router/index.js index e58491f..6b2d945 100644 --- a/screen_standard/src/router/index.js +++ b/screen_standard/src/router/index.js @@ -1,5 +1,6 @@ import { createRouter, createWebHistory } from 'vue-router' import HomeView from '../views/HomeView.vue' +import indexView from '../views/index.vue' const router = createRouter({ history: createWebHistory(import.meta.env.BASE_URL), @@ -8,6 +9,11 @@ path: '/', name: 'home', component: HomeView + }, + { + path: '/index', + name: 'index', + component: indexView } ] }) -- Gitblit v1.9.3