12345678910111213141516171819 |
- /**
- * 基础事件 - 逻辑层
- */
- export default class BasicEvent {
- /**名字 */
- public event: string;
- /**作用域 */
- public target: any;
- /**回调函数 */
- public callback: Function;
- /**优先级 */
- public priority: number;
- /**是否单次执行 */
- public once: boolean;
- /**停止事件传递方法 */
- public stopPropagation: Function;
- }
|