1、query 方式
  • 传参:
	this.$router.push({
	  path: this.componentName,
	    query: {
	        dataList: [...]
	    }
	});
  • 取值:
	this.$route.query.dataList;
2、params 方式
  • 传参:
	this.$router.push({
	   path: this.componentName, 
	    params: {
	         dataList: [...]
	     }
	});
  • 取值:
	this.$route.params.dataList;
Logo

前往低代码交流专区

更多推荐