diff --git a/main.uts b/main.uts index 5b4929d4ba97885ccafb3089d4c224845d1ce6fe..3d4dc082ef61dbe83ce74b4401924505e1858304 100644 --- a/main.uts +++ b/main.uts @@ -4,13 +4,13 @@ import { createSSRApp } from 'vue' export function createApp() { const app = createSSRApp(App) - // app.mixin({ - // onReady() { - // setTimeout(() => { - // console.log((this as BasePage).$nativePage!.getDomJson()) - // }, 100) - // } - // }) + app.mixin({ + onReady() { + setTimeout(() => { + console.log((this as BasePage).$nativePage!.getDomJson()) + }, 100) + } + }) return { app }