解决vue项目访问地址自动添加#号问题| Id | Title | DateAdded | SourceUrl | PostType | Body | BlogId | Description | DateUpdated | IsMarkdown | EntryName | CreatedTime | IsActive | AutoDesc | AccessPermission |
| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------|
| 17320310| 解决vue项目访问地址自动添加#号问题| 2023-04-15T00:07:00| | BlogPost|
新建一个vue项目,访问地址url后自动添加#号,很不美观。
在项目路由文件index.js文件中,将路由模式修改为history,代码如下:
export default new Router({ mode: 'history', routes: [ { path: '/', name: 'HelloWorld', component: HelloWorld }, { path: '/cardList', name: 'cardList', component: cardList } ] })
| 648658| | 2023-04-15T00:07:00| false| | 2023-04-15T00:07:14.427| true| 新建一个vue项目,访问地址url后自动添加#号,很不美观。 在项目路由文件index.js文件中,将路由模式修改为history,代码如下: export default new Router({ mode: 'history', routes: [ { path: '/', name: 'Hel| Anonymous| 标签:vue,访问,地址,添加,-------------,history From: https://www.cnblogs.com/ralphlauren/p/18621341