vue路由跳转的两种方式

1、编程式导航

this.$router.push({name: 'router1', query:{ id: 456 })

this.$router.push({path: '/router1', params:{ id: 456 })

this.$router.push("/search")

2、声明式导航

(1)

 等同于:

{{m.title}}

(2)传递params,参数name和path都可

 

你可能感兴趣的:(vue.js,javascript,前端)