问题:项目里给表头使用renderHeader函数添加点击事件,this指向underfind
方法:在data里把当前vue实例缓存备用
data () {
var self = this // 存储当前vue实例this ★
return {
user_columns: [
{
// title: "客户",
key: "NAME",
renderHeader(h, params){
return h('div', [h('strong', '客户'), h('span', {
style: {
marginLeft: '10px',
color: '#fff',
width: '30px',
height: '20px',
background: '#28cd9f',
display: 'inline-block',
textAlign: 'center',
lineHeight: '20px',
borderRadius: '20px',
cursor: 'pointer'
},
on: {
click: () => {
_this.madalCust = true //this找到了❤
}
}
},
"+")])
}
},
],
}