mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-16 03:18:11 +00:00
8 lines
144 B
TypeScript
8 lines
144 B
TypeScript
export function getMockEvent(target, options) {
|
|
return {
|
|
target,
|
|
preventDefault() {},
|
|
stopPropagation() {},
|
|
...options,
|
|
};
|
|
} |