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

// html
<div :data-id="item.id">小明</div>

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

  

原文地址:https://www.cnblogs.com/sunday123/p/11504788.html