修改前效果
想要去掉/# 如何实现?
1、typeScript中去掉url中#
找到项目中的router/index.ts-----------去掉createWebHashHistory中的Hash
将createWebHashHistory修改为createWebHistory
2、javaScript中去掉url中#
找到项目中的router/index.js-----------添加mode: 'history',
简单用法:
export default new Router({mode: 'history',routes: [{path: '/',name: 'IndexPage',component: IndexPage}]
})