|
@@ -11,8 +11,9 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
render(h) {
|
|
|
- const { row, column, value, colIndex } = this.scope;
|
|
|
- return this.renderer(h, row, column, value, colIndex);
|
|
|
+ const { row, column, value, index } = this.scope;
|
|
|
+ console.log(column);
|
|
|
+ return this.renderer(h, row, column, value, index);
|
|
|
}
|
|
|
}
|
|
|
</script>
|