methods:{
backRenderer(instance, td, row, col, prop, value, cellProperties, t) {
// 如何让此处的this指向函数的掉者,也就是下文中的cells,而不是指向vue
console.log(this);
Handsontable.renderers.TextRenderer.apply(this, arguments);
},
//在mounted中调用init方法
initH(){
// new一个对象
this.hot = new Handsontable(dom, defSettging)
let defSettging={
cells: function (row, col, prop) {
// this 指的是cells
this.renderer = _this.backRenderer();
}
}
}
// methods中定义的方法若干
}
潇潇雨雨
相关分类