@cabloy/vue-runtime-core 3.5.44 → 3.5.45
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
|
@@ -7549,7 +7549,7 @@ function createBaseVNode(type, props = null, children = null, patchFlag = 0, dyn
|
|
|
7549
7549
|
vnode.patchFlag !== 32) {
|
|
7550
7550
|
currentBlock.push(vnode);
|
|
7551
7551
|
}
|
|
7552
|
-
if (props["v-slots"]) {
|
|
7552
|
+
if (props && props["v-slots"]) {
|
|
7553
7553
|
if (!vnode.children) vnode.children = { _ctx: currentRenderingInstance };
|
|
7554
7554
|
if (typeof vnode.children === "object") {
|
|
7555
7555
|
vnode.children = Object.assign(
|
|
@@ -6046,7 +6046,7 @@ function createBaseVNode(type, props = null, children = null, patchFlag = 0, dyn
|
|
|
6046
6046
|
vnode.patchFlag !== 32) {
|
|
6047
6047
|
currentBlock.push(vnode);
|
|
6048
6048
|
}
|
|
6049
|
-
if (props["v-slots"]) {
|
|
6049
|
+
if (props && props["v-slots"]) {
|
|
6050
6050
|
if (!vnode.children) vnode.children = { _ctx: currentRenderingInstance };
|
|
6051
6051
|
if (typeof vnode.children === "object") {
|
|
6052
6052
|
vnode.children = Object.assign(
|
|
@@ -7606,7 +7606,7 @@ function createBaseVNode(type, props = null, children = null, patchFlag = 0, dyn
|
|
|
7606
7606
|
vnode.patchFlag !== 32) {
|
|
7607
7607
|
currentBlock.push(vnode);
|
|
7608
7608
|
}
|
|
7609
|
-
if (props["v-slots"]) {
|
|
7609
|
+
if (props && props["v-slots"]) {
|
|
7610
7610
|
if (!vnode.children) vnode.children = { _ctx: currentRenderingInstance };
|
|
7611
7611
|
if (typeof vnode.children === "object") {
|
|
7612
7612
|
vnode.children = Object.assign(
|