路由配置
export default new Router({
mode: 'history',
routes: [
{
path: '/',
name: 'Hello',
component: Index
},
{
path: '/module/:name/:age',
name: 'module',
component: Module
]
})
带参数跳转
_this.$router.push({name: 'module', params: {name: 'xy', age: 22}})
浏览器url:http://localhost:8080/module/xy/22

 后端配置:https://router.vuejs.org/zh-cn/essentials/history-mode.html

相关文章:

  • 2021-10-08
  • 2021-07-11
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-02
  • 2021-12-14
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-06-09
  • 2022-12-23
  • 2021-08-26
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案