Element ui el-table is stuck in IE browser data for a long time

Element ui el-table is stuck in IE browser data for a long time

The ElementUI component library is used in the vue project. When it needs to be compatible with IE, the el-table is used. In the case of a large amount of table data, when the paging selection shows more than 20 data per page, the table slides very lagging.
Insert picture description here
Solution:
1. Upgrade elementUI to v2.8.0 or higher

2. Avoid using show-overflow-tooltip in the form

3. Set the z-index on the el-table or parent element, or increase the z-index (for ie) (to increase the z-index, please note that the z-index value of elements such as page pop-up boxes is larger than that of el-table , Otherwise it will be blocked)

Guess you like

Origin blog.csdn.net/weixin_52400118/article/details/112464017