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