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
1 | { | 1 | { |
2 | "name": "iview", | 2 | "name": "iview", |
3 | - "version": "2.0.0-rc.12", | 3 | + "version": "2.0.0-rc.13", |
4 | "title": "iView", | 4 | "title": "iView", |
5 | "description": "A high quality UI components Library with Vue.js", | 5 | "description": "A high quality UI components Library with Vue.js", |
6 | "homepage": "http://www.iviewui.com", | 6 | "homepage": "http://www.iviewui.com", |
src/components/table/cell.vue
@@ -61,7 +61,11 @@ | @@ -61,7 +61,11 @@ | ||
61 | const component = new Vue({ | 61 | const component = new Vue({ |
62 | functional: true, | 62 | functional: true, |
63 | render: (h) => { | 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 | const Cell = component.$mount(); | 71 | const Cell = component.$mount(); |