Query传值

首先在要传递参数的页面使用

this.$router.push({ query: { value: row }, path: '/' })

其中 row就是传递的值

跳转到index页面中 路由如图所示

VUE使用路由进行传递参数_传递参数

后缀就携带了传递的参数

使用this.$route.query.value 拿取传递过来的参数

this.$route.query.value