screen_standard/src/router/index.js
@@ -1,13 +1,21 @@ 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), history: createWebHistory(import.meta.env.VITE_BASE_CONTEXT), routes: [ { path: '/', name: 'home', component: HomeView component: indexView }, { path: '/process', name: 'process', component: processView } ] })