Table: Remove extra render in cells.

pull/2961/head
Liril 2017-02-22 15:17:19 +08:00 committed by 杨奕
parent d1bcc7962c
commit 651fb58988
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 }>
{
column.renderCell.call(this._renderProxy, h, { row, column, $index, store: this.store, _self: this.context || this.table.$vnode.context })
columnsHidden[cellIndex] ? '' : column.renderCell.call(this._renderProxy, h, { row, column, $index, store: this.store, _self: this.context || this.table.$vnode.context })
}
</td>
)