diff --git a/package.json b/package.json index 55c68bd..321a521 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iview", - "version": "2.0.0-rc.12", + "version": "2.0.0-rc.13", "title": "iView", "description": "A high quality UI components Library with Vue.js", "homepage": "http://www.iviewui.com", diff --git a/src/components/table/cell.vue b/src/components/table/cell.vue index 7efb951..5c034bd 100644 --- a/src/components/table/cell.vue +++ b/src/components/table/cell.vue @@ -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(); -- libgit2 0.21.4