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

@ -1,6 +1,6 @@
{ {
"name": "iview", "name": "iview",
"version": "2.0.0-rc.12", "version": "2.0.0-rc.13",
"title": "iView", "title": "iView",
"description": "A high quality UI components Library with Vue.js", "description": "A high quality UI components Library with Vue.js",
"homepage": "http://www.iviewui.com", "homepage": "http://www.iviewui.com",

View file

@ -61,7 +61,11 @@
const component = new Vue({ const component = new Vue({
functional: true, functional: true,
render: (h) => { 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(); const Cell = component.$mount();