@cabloy/vue-runtime-core 3.5.29 → 3.5.31
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.
package/dist/runtime-core.cjs.js
CHANGED
|
@@ -2722,6 +2722,7 @@ const KeepAliveImpl = {
|
|
|
2722
2722
|
if (cachedVNode) {
|
|
2723
2723
|
vnode.el = cachedVNode.el;
|
|
2724
2724
|
vnode.component = cachedVNode.component;
|
|
2725
|
+
vnode.component.zovaHostProviders = vnode.zovaHostProviders;
|
|
2725
2726
|
if (vnode.transition) {
|
|
2726
2727
|
setTransitionHooks(vnode, vnode.transition);
|
|
2727
2728
|
}
|
|
@@ -5448,6 +5449,9 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
5448
5449
|
if (zova && zova.meta.$ssr.isRuntimeSsrPreHydration && !zova.meta.$ssr._hydratingInstanceRecord(instance)) {
|
|
5449
5450
|
return;
|
|
5450
5451
|
}
|
|
5452
|
+
if (zova && instance.zovaHostProviders) {
|
|
5453
|
+
zova._zovaHostProviders();
|
|
5454
|
+
}
|
|
5451
5455
|
effect.run();
|
|
5452
5456
|
}
|
|
5453
5457
|
}
|
|
@@ -2075,6 +2075,7 @@ const KeepAliveImpl = {
|
|
|
2075
2075
|
if (cachedVNode) {
|
|
2076
2076
|
vnode.el = cachedVNode.el;
|
|
2077
2077
|
vnode.component = cachedVNode.component;
|
|
2078
|
+
vnode.component.zovaHostProviders = vnode.zovaHostProviders;
|
|
2078
2079
|
if (vnode.transition) {
|
|
2079
2080
|
setTransitionHooks(vnode, vnode.transition);
|
|
2080
2081
|
}
|
|
@@ -4178,6 +4179,9 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
4178
4179
|
if (zova && zova.meta.$ssr.isRuntimeSsrPreHydration && !zova.meta.$ssr._hydratingInstanceRecord(instance)) {
|
|
4179
4180
|
return;
|
|
4180
4181
|
}
|
|
4182
|
+
if (zova && instance.zovaHostProviders) {
|
|
4183
|
+
zova._zovaHostProviders();
|
|
4184
|
+
}
|
|
4181
4185
|
effect.run();
|
|
4182
4186
|
}
|
|
4183
4187
|
}
|
|
@@ -2737,6 +2737,7 @@ const KeepAliveImpl = {
|
|
|
2737
2737
|
if (cachedVNode) {
|
|
2738
2738
|
vnode.el = cachedVNode.el;
|
|
2739
2739
|
vnode.component = cachedVNode.component;
|
|
2740
|
+
vnode.component.zovaHostProviders = vnode.zovaHostProviders;
|
|
2740
2741
|
if (vnode.transition) {
|
|
2741
2742
|
setTransitionHooks(vnode, vnode.transition);
|
|
2742
2743
|
}
|
|
@@ -5505,6 +5506,9 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
5505
5506
|
if (zova && zova.meta.$ssr.isRuntimeSsrPreHydration && !zova.meta.$ssr._hydratingInstanceRecord(instance)) {
|
|
5506
5507
|
return;
|
|
5507
5508
|
}
|
|
5509
|
+
if (zova && instance.zovaHostProviders) {
|
|
5510
|
+
zova._zovaHostProviders();
|
|
5511
|
+
}
|
|
5508
5512
|
effect.run();
|
|
5509
5513
|
}
|
|
5510
5514
|
}
|