路由模式设置 2023-12-08 vue2 98 词 vuevue-routervue2 路由模式设置#问题:路由的路径看起来不自然,有#,能否切换为真正的路径形式 hash 路由(默认),例如:http://localhost:8080/#/home history 路由(常用),例如:http://localhost:8080/home (以后上线需要服务器端支持) 12345const router = new VueRouter({ routes, // 一旦使用了history模式,地址栏就没有#,需要后台配置访问规则 mode: 'history',}); 编程式导航 路由404