release 2.0.0-rc.13

This commit is contained in:
梁灏 2017-05-12 15:45:28 +08:00
parent 638590f55b
commit 78d8ea4d4a
2 changed files with 6 additions and 2 deletions

View file

@ -61,7 +61,11 @@
const component = new Vue({
functional: true,
render: (h) => {
return this.column.render(h, this.row, this.column, this.index);
return this.column.render(h, {
row: this.row,
column: this.column,
index: this.index
});
}
});
const Cell = component.$mount();