@cabloy/vue-runtime-core 3.5.43 → 3.5.44
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,6 +7549,16 @@ 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"]) {
|
|
7553
|
+
if (!vnode.children) vnode.children = { _ctx: currentRenderingInstance };
|
|
7554
|
+
if (typeof vnode.children === "object") {
|
|
7555
|
+
vnode.children = Object.assign(
|
|
7556
|
+
{},
|
|
7557
|
+
props["v-slots"],
|
|
7558
|
+
vnode.children
|
|
7559
|
+
);
|
|
7560
|
+
}
|
|
7561
|
+
}
|
|
7552
7562
|
return vnode;
|
|
7553
7563
|
}
|
|
7554
7564
|
const createVNode = createVNodeWithArgsTransform ;
|
|
@@ -6046,6 +6046,16 @@ 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"]) {
|
|
6050
|
+
if (!vnode.children) vnode.children = { _ctx: currentRenderingInstance };
|
|
6051
|
+
if (typeof vnode.children === "object") {
|
|
6052
|
+
vnode.children = Object.assign(
|
|
6053
|
+
{},
|
|
6054
|
+
props["v-slots"],
|
|
6055
|
+
vnode.children
|
|
6056
|
+
);
|
|
6057
|
+
}
|
|
6058
|
+
}
|
|
6049
6059
|
return vnode;
|
|
6050
6060
|
}
|
|
6051
6061
|
const createVNode = _createVNode;
|
|
@@ -7606,6 +7606,16 @@ 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"]) {
|
|
7610
|
+
if (!vnode.children) vnode.children = { _ctx: currentRenderingInstance };
|
|
7611
|
+
if (typeof vnode.children === "object") {
|
|
7612
|
+
vnode.children = Object.assign(
|
|
7613
|
+
{},
|
|
7614
|
+
props["v-slots"],
|
|
7615
|
+
vnode.children
|
|
7616
|
+
);
|
|
7617
|
+
}
|
|
7618
|
+
}
|
|
7609
7619
|
return vnode;
|
|
7610
7620
|
}
|
|
7611
7621
|
const createVNode = !!(process.env.NODE_ENV !== "production") ? createVNodeWithArgsTransform : _createVNode;
|