@cabloy/vue-runtime-core 3.4.42 → 3.4.43

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5023,6 +5023,9 @@ function baseCreateRenderer(options, createHydrationFns) {
5023
5023
  if (zova && zova.meta.ssr.isRuntimeSsrPreHydration) {
5024
5024
  return;
5025
5025
  }
5026
+ if (!instance.subTree) {
5027
+ return;
5028
+ }
5026
5029
  {
5027
5030
  const nonHydratedAsyncRoot = locateNonHydratedAsyncRoot(instance);
5028
5031
  if (nonHydratedAsyncRoot) {
@@ -3795,6 +3795,9 @@ function baseCreateRenderer(options, createHydrationFns) {
3795
3795
  if (zova && zova.meta.ssr.isRuntimeSsrPreHydration) {
3796
3796
  return;
3797
3797
  }
3798
+ if (!instance.subTree) {
3799
+ return;
3800
+ }
3798
3801
  {
3799
3802
  const nonHydratedAsyncRoot = locateNonHydratedAsyncRoot(instance);
3800
3803
  if (nonHydratedAsyncRoot) {
@@ -5078,6 +5078,9 @@ function baseCreateRenderer(options, createHydrationFns) {
5078
5078
  if (zova && zova.meta.ssr.isRuntimeSsrPreHydration) {
5079
5079
  return;
5080
5080
  }
5081
+ if (!instance.subTree) {
5082
+ return;
5083
+ }
5081
5084
  {
5082
5085
  const nonHydratedAsyncRoot = locateNonHydratedAsyncRoot(instance);
5083
5086
  if (nonHydratedAsyncRoot) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cabloy/vue-runtime-core",
3
- "version": "3.4.42",
3
+ "version": "3.4.43",
4
4
  "description": "@vue/runtime-core",
5
5
  "main": "index.js",
6
6
  "module": "dist/runtime-core.esm-bundler.js",
@@ -47,6 +47,6 @@
47
47
  "homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-core#readme",
48
48
  "dependencies": {
49
49
  "@vue/shared": "3.4.37",
50
- "@vue/reactivity": "npm:@cabloy/vue-reactivity@3.4.42"
50
+ "@vue/reactivity": "npm:@cabloy/vue-reactivity@3.4.43"
51
51
  }
52
52
  }