vue项目中如何传递参数vue项目中,页面之间总是会需要传递参数,在这里我介绍两种传递参数的方法,直接上代码。方法一:通过router,传递页面参数。传递页面this.$router.push({ name: "changeSign", params: { sign: this.user.autograph } });接收参数页面this.oldSign = this.$route.params.sign;方法二:通过route,页面返回
编辑语言
2023-12-12
55 点赞
0 评论
83 浏览