vue push传参的两种方式
router.push({ name: ‘user’, params: { id: 123 }})在目标页面通过this.$route.params获取参数:id:{{this.$route.params.id}}this.router.push(path:′/backend′,query:id:"2")在目标页面通过this.router.push({path: '/backend', quer
router.push({ name: ‘user’, params: { id: 123 }})
在目标页面通过this.$route.params获取参数:
id:{{this.$route.params.id}}
this. r o u t e r . p u s h ( p a t h : ′ / b a c k e n d ′ , q u e r y : i d : " 2 " ) 在 目 标 页 面 通 过 t h i s . router.push({path: '/backend', query: {id: "2"}}) 在目标页面通过this. router.push(path:′/backend′,query:id:"2")在目标页面通过this.route.query 获取参数
提示:{{this.$route.query.id}}
更多推荐
所有评论(0)