index.js 336 B

12345678910111213141516
  1. import { createRouter, createWebHistory } from 'vue-router';
  2. const routes = [
  3. {
  4. path: '/',
  5. name: 'index',
  6. component: () => import(/* webpackChunkName: "index" */ '../views/index.vue'),
  7. },
  8. ];
  9. const router = createRouter({
  10. history: createWebHistory(process.env.VUE_APP_BASE_URL),
  11. routes,
  12. });
  13. export default router;