release 2.0.0-rc.13
This commit is contained in:
parent
638590f55b
commit
78d8ea4d4a
2 changed files with 6 additions and 2 deletions
|
@ -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",
|
||||||
|
|
|
@ -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();
|
||||||
|
|
Loading…
Add table
Reference in a new issue