router.ts 351 B

12345678910111213141516171819
  1. import { createRouter, createWebHashHistory, RouteRecordRaw } from "vue-router";
  2. const routes: Array<RouteRecordRaw> = [
  3. {
  4. path: "/",
  5. name: "stat",
  6. meta: {
  7. needAuth: true,
  8. },
  9. component: () => import("./Stat"),
  10. },
  11. ];
  12. const router = createRouter({
  13. history: createWebHashHistory(),
  14. routes,
  15. });
  16. export default router;