import { createRouter, createWebHashHistory } from "vue-router" import HomeView from "../views/HomeView.vue" import Login from "@/views/Login.vue" import RegisterView from "@/views/RegisterView.vue" const router = createRouter({ history: createWebHashHistory(), routes: [ { path: "/", name: "home", component: HomeView }, { path: "/about", name: "about", // route level code-splitting // this generates a separate chunk (About.[hash].js) for this route // which is lazy-loaded when the route is visited. component: () => import("../views/AboutView.vue") }, { path: "/login", name: "登录", component: Login }, { path: "/register", name: "注册", component: RegisterView } ] }) export default router