ElementUI表格无限滚动效果 鼠标进入停止滚动
在 el-table 标签外包一层 div 上面绑定鼠标进入和离开的方法。 给table一个固定高度(必须) 可以用 max-height 属性。
html:
<div @mouseout="mouseout" @mouseover="mouseover">
<el-table
:max-height='730'
:data="taskList"
default-expand-all
row-key="id"
:tree-props="setChildrens"
:border="true"
:cell-class-name="chageColor"
:span-method="arraySpanMethod"
v-loading="loading">
<el-table-column label="姓名" prop="realName" align="center" width="100px" fixed /