From 5e815f75a649d85f0ee4c65dfa8e160548c1c043 Mon Sep 17 00:00:00 2001 From: wangxiuxiu9 Date: Mon, 1 Sep 2025 14:59:12 +0800 Subject: [PATCH] a --- .../state_mgmt/src/lib/interop/interop.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frameworks/bridge/declarative_frontend/state_mgmt/src/lib/interop/interop.ts b/frameworks/bridge/declarative_frontend/state_mgmt/src/lib/interop/interop.ts index 37d7ae05371..d0e767df977 100644 --- a/frameworks/bridge/declarative_frontend/state_mgmt/src/lib/interop/interop.ts +++ b/frameworks/bridge/declarative_frontend/state_mgmt/src/lib/interop/interop.ts @@ -91,9 +91,15 @@ function resetViewPUFindLocalStorageInterop(): void { } function viewPUCreate(component: ViewPU): void { + console.log("aaaaaa viewPUCreate"); ViewPU.create(component); } +function viewV2Create(component: ViewV2): void { + console.log("aaaaaa viewV2Create"); + ViewV2.create(component); +} + function getRawObjectForInterop(value: Object): Object { if ((Array.isArray(value) || value instanceof Set || value instanceof Date || value instanceof Map) && ObservedObject.IsObservedObject(value)) { -- Gitee