index.js 286 B

1234567891011121314151617
  1. import { createRouter, createWebHistory } from 'vue-router'
  2. import HomeView from '../views/HomeView.vue'
  3. const routes = [
  4. {
  5. path: '/',
  6. name: 'home',
  7. component: HomeView
  8. }
  9. ]
  10. const router = createRouter({
  11. history: createWebHistory(),
  12. routes
  13. })
  14. export default router