This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 使Ant Design Vue的Table组件支持表头sticky | |
* 单元格宽度必须固定 | |
*/ | |
import { throttle } from '../api/util'; | |
let listenAction; | |
let container; | |
let stickyHeader = null; | |
let originEl = null; |