vue 3.4.24 → 3.4.25

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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * vue v3.4.24
2
+ * vue v3.4.25
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -1,5 +1,5 @@
1
1
  /**
2
- * vue v3.4.24
2
+ * vue v3.4.25
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -3953,11 +3953,13 @@ If this is a native custom element, make sure to exclude it from component resol
3953
3953
  return vnode.component.subTree;
3954
3954
  }
3955
3955
  const { shapeFlag, children } = vnode;
3956
- if (shapeFlag & 16) {
3957
- return children[0];
3958
- }
3959
- if (shapeFlag & 32 && isFunction(children.default)) {
3960
- return children.default();
3956
+ if (children) {
3957
+ if (shapeFlag & 16) {
3958
+ return children[0];
3959
+ }
3960
+ if (shapeFlag & 32 && isFunction(children.default)) {
3961
+ return children.default();
3962
+ }
3961
3963
  }
3962
3964
  }
3963
3965
  function setTransitionHooks(vnode, hooks) {
@@ -5557,7 +5559,7 @@ If you want to remount the same app, move your app creation logic into a factory
5557
5559
  return !!(currentInstance || currentRenderingInstance || currentApp);
5558
5560
  }
5559
5561
 
5560
- const internalObjectProto = /* @__PURE__ */ Object.create(null);
5562
+ const internalObjectProto = {};
5561
5563
  const createInternalObject = () => Object.create(internalObjectProto);
5562
5564
  const isInternalObject = (obj) => Object.getPrototypeOf(obj) === internalObjectProto;
5563
5565
 
@@ -9614,7 +9616,7 @@ Component that was made reactive: `,
9614
9616
  return true;
9615
9617
  }
9616
9618
 
9617
- const version = "3.4.24";
9619
+ const version = "3.4.25";
9618
9620
  const warn = warn$1 ;
9619
9621
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
9620
9622
  const devtools = devtools$1 ;