Vue访问去掉url地址栏中的#符号
要去掉Vue访问地址中的#符号可以在路由中设置路由模式mode为history
export default new Router({
mode: 'history',
routes: [{
path: '/',
name: 'Home',
component: Home
}, {
path: '/news',
name: 'News',
component: News
}, {
path: '/goods',
name: 'Goods',
component: Goods
}, {
path: '/detail/:id',
name: 'Detail',
component: Detail
}
]
})
版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/03/12/vue-access-url-removed-the-symbol-sharp/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。
THE END
0
二维码
打赏
海报
Vue访问去掉url地址栏中的#符号
要去掉Vue访问地址中的#符号可以在路由中设置路由模式mode为history
export default new Router({
mode: 'history',
routes: [{
path: &……
文章目录
关闭
共有 0 条评论