@cabloy/vue-runtime-core 3.5.46 → 3.5.47
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
|
@@ -7501,7 +7501,7 @@ function createBaseVNode(type, props = null, children = null, patchFlag = 0, dyn
|
|
|
7501
7501
|
if (props && props["v-slots"]) {
|
|
7502
7502
|
if (!children) children = {};
|
|
7503
7503
|
if (shared.isFunction(children)) children = { default: children };
|
|
7504
|
-
if (children === "object") {
|
|
7504
|
+
if (typeof children === "object") {
|
|
7505
7505
|
children = Object.assign({}, props["v-slots"], children);
|
|
7506
7506
|
}
|
|
7507
7507
|
}
|
|
@@ -6001,7 +6001,7 @@ function createBaseVNode(type, props = null, children = null, patchFlag = 0, dyn
|
|
|
6001
6001
|
if (props && props["v-slots"]) {
|
|
6002
6002
|
if (!children) children = {};
|
|
6003
6003
|
if (shared.isFunction(children)) children = { default: children };
|
|
6004
|
-
if (children === "object") {
|
|
6004
|
+
if (typeof children === "object") {
|
|
6005
6005
|
children = Object.assign({}, props["v-slots"], children);
|
|
6006
6006
|
}
|
|
6007
6007
|
}
|
|
@@ -7558,7 +7558,7 @@ function createBaseVNode(type, props = null, children = null, patchFlag = 0, dyn
|
|
|
7558
7558
|
if (props && props["v-slots"]) {
|
|
7559
7559
|
if (!children) children = {};
|
|
7560
7560
|
if (isFunction(children)) children = { default: children };
|
|
7561
|
-
if (children === "object") {
|
|
7561
|
+
if (typeof children === "object") {
|
|
7562
7562
|
children = Object.assign({}, props["v-slots"], children);
|
|
7563
7563
|
}
|
|
7564
7564
|
}
|