From 6a1931f434ebffcbe449b4a6e10ed326b479cf1b Mon Sep 17 00:00:00 2001 From: qiang Date: Sat, 9 Mar 2024 17:03:33 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=89=93=E5=8D=B0=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=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 | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/main.uts b/main.uts index 486ca94f..b4550097 100644 --- a/main.uts +++ b/main.uts @@ -4,7 +4,14 @@ import { createSSRApp } from 'vue' export function createApp() { const app = createSSRApp(App) + app.mixin({ + onReady() { + setTimeout(() => { + console.log(this.$appPage!.getDomJson()) + }, 100) + } + }) return { app } -} +} -- GitLab