vue 学习经验总结(this.$router.push url传参后清空地址栏中的参数)
1.在a页面向b页面传参tohome(){this.$router.push(path:"/b",query:{id})}2.在b页面的cretate接收created() {this.id=this.$route.query.idthis.$router.push({ query: {} });//清空地址栏参数},
·
1.在a页面向b页面传参
tohome(){
this.$router.push(path:"/b",query:{id})
}
2.在b页面的cretate接收
created() {
this.id=this.$route.query.id
this.$router.push({ query: {} }); //清空地址栏参数
},
更多推荐
已为社区贡献4条内容
所有评论(0)