import { createRouter, createWebHistory } from 'vue-router' import HomeView from "@/views/HomeView.vue"; import CoreTechnology from "@/views/CoreTechnology.vue"; const router = createRouter({ history: createWebHistory(import.meta.env.BASE_URL), routes: [ { path:'/', name:'home', component:HomeView }, { path:'/technology', name:'technology', component:CoreTechnology } ], }) export default router