index.ts 331 B

12345678910111213141516
  1. import { createRouter, createWebHashHistory, RouteRecordRaw } from 'vue-router'
  2. const routes: Array<RouteRecordRaw> = [
  3. {
  4. path: '/',
  5. name: 'page',
  6. component: () => import('../views/index.vue')
  7. }
  8. ]
  9. const router = createRouter({
  10. history: createWebHashHistory(),
  11. routes
  12. })
  13. export default router