tj
2025-03-13 06ce56512a391225c73f561377ae210874273a61
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { createRouter, createWebHistory } from 'vue-router';
import Home from '@/pages/Home.vue';
import Product from '@/pages/Product.vue';
import Contact from '@/pages/Contact.vue';
import About from '@/pages/About.vue';
 
const routes = [
  { path: '/', component: Home },
  { path: '/product', component: Product },
  { path: '/contact', component: Contact },
  { path: '/about', component: About },
];
 
const router = createRouter({
  history: createWebHistory(),
  routes
});
 
export default router;