From f6d86f09557a10988026ae00b89261abe474dcdc Mon Sep 17 00:00:00 2001 From: qiang Date: Mon, 11 Mar 2024 11:30:24 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=85=81=E8=AE=B8=E6=89=93=E5=8D=B0?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E8=8A=82=E7=82=B9=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.uts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/main.uts b/main.uts index 5b4929d4..3d4dc082 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 } -- GitLab