vue 设置标签data值,获取标签data参数


// html
<span @click="getdata" :data-id="ids" >待付款</span>


// VUE
getdata:function(e){
console.log(e.srcElement.dataset.id)
}

猜你喜欢

转载自blog.csdn.net/sym134/article/details/85328471