tianji/src/client/utils/dom.ts

16 lines
350 B
TypeScript
Raw Normal View History

/**
* A shortcut for executing directly in the component: stopPropagation
*/
export function stopPropagation(e: Event) {
e.stopPropagation();
}
/**
* A shortcut for executing directly in the component: preventDefault
*/
export function preventDefault(e: Event) {
e.preventDefault();
}
2024-05-06 14:18:19 +00:00
export const rootEl = document.getElementById('root');