router.ts 389 B

123456789101112131415161718
  1. import { createRouter, createWebHistory } from 'vue-router'
  2. const routes = [
  3. {
  4. path: '/',
  5. name: 'Home',
  6. component: () => import('./pages/index.vue'),
  7. },
  8. {
  9. path: '/shapes',
  10. name: 'Shapes',
  11. component: () => import('./pages/shapes.vue'),
  12. },
  13. ]
  14. export const router = createRouter({
  15. history: createWebHistory(),
  16. routes
  17. })