Mr.Zhang
2023-08-22 9744095cc2b64e6f5cd3492abb52268afc4921bb
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
    }
  ]
})