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), routes: [ { path: '/', name: 'home', component: indexView }, // { // path: '/index', // name: 'index', // component: indexView // } ] }) export default router