Table: Fix wrong fixed height temporary. (#3019)

pull/3063/head
Cyril Su 2017-02-24 17:51:15 +08:00 committed by cinwell.li
parent 82a3685138
commit 537e1e035c
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ export default {
on-mouseenter={ ($event) => this.handleCellMouseEnter($event, row) }
on-mouseleave={ this.handleCellMouseLeave }>
{
columnsHidden[cellIndex] ? '' : column.renderCell.call(this._renderProxy, h, { row, column, $index, store: this.store, _self: this.context || this.table.$vnode.context })
column.renderCell.call(this._renderProxy, h, { row, column, $index, store: this.store, _self: this.context || this.table.$vnode.context }, columnsHidden[cellIndex])
}
</td>
)