index.js 321 B

12345678910111213141516171819
  1. import { createRouter, createWebHistory } from 'vue-router'
  2. const routes = [
  3. {
  4. path: '/',
  5. name: 'index',
  6. component: () => import('../views/index.vue'),
  7. meta: {
  8. title: '首页'
  9. }
  10. },
  11. ]
  12. const router = createRouter({
  13. history: createWebHistory(process.env.BASE_URL),
  14. routes
  15. })
  16. export default router