Commit 78d8ea4d4a0271b1cd46e835e5c20bf4d6ea71e7

Authored by 梁灏
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 2 "name": "iview",
3   - "version": "2.0.0-rc.12",
  3 + "version": "2.0.0-rc.13",
4 4 "title": "iView",
5 5 "description": "A high quality UI components Library with Vue.js",
6 6 "homepage": "http://www.iviewui.com",
... ...
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();
... ...