@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.
@@ -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(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cabloy/vue-runtime-core",
3
- "version": "3.5.44",
3
+ "version": "3.5.45",
4
4
  "description": "@vue/runtime-core",
5
5
  "main": "index.js",
6
6
  "module": "dist/runtime-core.esm-bundler.js",