Table: fix incorrect expression (#5109)

pull/5127/head
杨奕 2017-05-30 00:49:24 +08:00 committed by baiyaaaaa
parent 6577bcca41
commit 4306672116
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@
'el-table--border': border,
'el-table--fluid-height': maxHeight,
'el-table--enable-row-hover': !store.states.isComplex,
'el-table--enable-row-transition': true || (store.states.data || []).length !== 0 && (store.states.data || []).length < 100
'el-table--enable-row-transition': (store.states.data || []).length !== 0 && (store.states.data || []).length < 100
}"
@mouseleave="handleMouseLeave($event)">
<div class="hidden-columns" ref="hiddenColumns"><slot></slot></div>