Vue-Router用createRouter创建路由去除#

2024年09月25日 建站教程

routes中的createWebHashHistory改成createWebHistory

import {createRouter, createWebHistory} from 'vue-router';

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

export default router;

本文链接:http://so.lmcjl.com/news/13876/

展开阅读全文
相关内容