当前位置: 首页 > 工具软件 > path button > 使用案例 >

Vue+elementui el-button 点击带参跳转页面

谭昕
2023-12-01
<el-button size="mini" 
	type="text" 
	icon="el-icon-edit" 
	@click="linkUpdate(scope.row)" 
	>修改 >
</el-button>
linkUpdate(row){
	this.$router.push({path:'/goods/goodsinfor', query:{id : row.id}})
},
 类似资料: