Commit 78d8ea4d4a0271b1cd46e835e5c20bf4d6ea71e7
1 parent
638590f5
release 2.0.0-rc.13
Showing
2 changed files
with
6 additions
and
2 deletions
Show diff stats
package.json
src/components/table/cell.vue
... | ... | @@ -61,7 +61,11 @@ |
61 | 61 | const component = new Vue({ |
62 | 62 | functional: true, |
63 | 63 | render: (h) => { |
64 | - return this.column.render(h, this.row, this.column, this.index); | |
64 | + return this.column.render(h, { | |
65 | + row: this.row, | |
66 | + column: this.column, | |
67 | + index: this.index | |
68 | + }); | |
65 | 69 | } |
66 | 70 | }); |
67 | 71 | const Cell = component.$mount(); | ... | ... |