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 } ] })