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
/** | |
* @file 使用postMessage通讯 | |
*/ | |
/** ================= sender ======================= */ | |
const senderTime = {} | |
/** | |
* send 调用方会轮询发送postMessage信息 | |
* receive调用方会向 send 调用方发送确认信息使它停止轮询。 |
虚拟滚动列表的思路与实现
/**
* @target 将第三方table组件改造成可无限加载的虚拟列表
* @var 滚动区域 scroll-area
* @var 实际显示区域 real-area
* @var 滚动偏移量 scroll-offset
* @result real-area 设置 scroll-offset,使它一直保持在可视区
*/
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
- windowVueCode.txt Vue项目使用 `window.` 的形式异步声明组件 |