【Vue3】路由怎么切换成 history 模式

两句代码:

import { createWebHistory, createRouter } from "vue-router"; // 1

const router = createRouter({
  history: createWebHistory(), // 2
  routes,
});

你可能感兴趣的:(Vue)