12345678910111213141516171819 |
- import { createRouter, createWebHashHistory, RouteRecordRaw } from "vue-router";
- const routes: Array<RouteRecordRaw> = [
- {
- path: "/",
- name: "stat",
- meta: {
- needAuth: true,
- },
- component: () => import("./Stat"),
- },
- ];
- const router = createRouter({
- history: createWebHashHistory(),
- routes,
- });
- export default router;
|