From e9c676ff2b64724ad74f017bd280d623e8d72e6b Mon Sep 17 00:00:00 2001 From: Stefano Nepa <124149383+stefanonepanedap@users.noreply.github.com> Date: Mon, 10 Nov 2025 02:38:05 +0100 Subject: [PATCH] chore(runtime-dom): export nodeOps and patchProp for better accessibility (#13753) --- packages/runtime-dom/src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/runtime-dom/src/index.ts b/packages/runtime-dom/src/index.ts index 9b8782733d..7407ed7195 100644 --- a/packages/runtime-dom/src/index.ts +++ b/packages/runtime-dom/src/index.ts @@ -17,6 +17,7 @@ import { } from '@vue/runtime-core' import { nodeOps } from './nodeOps' import { patchProp } from './patchProp' +export { nodeOps, patchProp } // Importing from the compiler, will be tree-shaken in prod import { NOOP, -- 2.47.3