微信小程序data-传参

<view bindtap="change" data-index="{{index}}">哈哈</view>

change(event){
    const dataset = event.target.dataset;
    const index = dataset.index
}