index.js 238 B

12345678910
  1. import { createRouter, createWebHashHistory } from "vue-router";
  2. import routes from "./routes";
  3. const router = createRouter({
  4. history: createWebHashHistory(),
  5. scrollBehavior: () => ({ top: 0 }),
  6. routes,
  7. });
  8. export default router;