mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-25 23:10:10 +08:00
9 lines
245 B
TypeScript
9 lines
245 B
TypeScript
/**
|
|
* * 页面初始化就执行的函数
|
|
*/
|
|
export const initFunction = async () => {
|
|
// 捕获全局错误
|
|
window.addEventListener("unhandledrejection", event => {
|
|
console.warn(`UNHANDLED PROMISE REJECTION: ${event.reason}`);
|
|
});
|
|
} |