iview table表格如何添加点击事件

应该如何在账单编号这一列添加点击事件,在数据上点击,感谢各位

 columns1: [

{

title: '账单编号',

key: 'billCode',

className: "fistCol",

// render: (h, params) => {

// return h('div',{

// })

// },

},

iview table表格如何添加点击事件
iview table表格如何添加点击事件


回答:

render: (h, params) => {

return h("div", {

props: {},

style: {},

on: {

click: (e) => {console.log(e)}

}

})

}


回答:

render: (h, params) => {

return h("div", {

style: {

color:'blue'

},

on: {

click(e) {console.log(params.row)}

}

},

params.row.billCode

)

}

以上是 iview table表格如何添加点击事件 的全部内容, 来源链接: utcz.com/p/936950.html

回到顶部