index.ts 274 B

1234567891011121314
  1. import { createRouter, createWebHashHistory } from "vue-router";
  2. const router = createRouter({
  3. history: createWebHashHistory(),
  4. routes: [
  5. {
  6. path: "/",
  7. name: "home",
  8. component: () => import("../pages/home"),
  9. },
  10. ],
  11. });
  12. export default router;