@cabloy/vue-runtime-core 3.5.34 → 3.5.36
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
|
@@ -5223,6 +5223,9 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
5223
5223
|
}
|
|
5224
5224
|
};
|
|
5225
5225
|
const updateComponent = (n1, n2, optimized) => {
|
|
5226
|
+
if (n2.component !== n1.component) {
|
|
5227
|
+
n1.component.zovaHostProviders = n2.zovaHostProviders;
|
|
5228
|
+
}
|
|
5226
5229
|
const instance = n2.component = n1.component;
|
|
5227
5230
|
if (shouldUpdateComponent(n1, n2, optimized)) {
|
|
5228
5231
|
if (instance.asyncDep && !instance.asyncResolved) {
|
|
@@ -4007,6 +4007,9 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
4007
4007
|
}
|
|
4008
4008
|
};
|
|
4009
4009
|
const updateComponent = (n1, n2, optimized) => {
|
|
4010
|
+
if (n2.component !== n1.component) {
|
|
4011
|
+
n1.component.zovaHostProviders = n2.zovaHostProviders;
|
|
4012
|
+
}
|
|
4010
4013
|
const instance = n2.component = n1.component;
|
|
4011
4014
|
if (shouldUpdateComponent(n1, n2, optimized)) {
|
|
4012
4015
|
if (instance.asyncDep && !instance.asyncResolved) {
|
|
@@ -5280,6 +5280,9 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
5280
5280
|
}
|
|
5281
5281
|
};
|
|
5282
5282
|
const updateComponent = (n1, n2, optimized) => {
|
|
5283
|
+
if (n2.component !== n1.component) {
|
|
5284
|
+
n1.component.zovaHostProviders = n2.zovaHostProviders;
|
|
5285
|
+
}
|
|
5283
5286
|
const instance = n2.component = n1.component;
|
|
5284
5287
|
if (shouldUpdateComponent(n1, n2, optimized)) {
|
|
5285
5288
|
if (instance.asyncDep && !instance.asyncResolved) {
|