initFunction.ts 245 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 /** * * 页面初始化就执行的函数 */ export const initFunction = async () => { // 捕获全局错误 window.addEventListener("unhandledrejection", event => { console.warn(`UNHANDLED PROMISE REJECTION: ${event.reason}`); }); }