vue 3.5.7 → 3.5.8

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.5.7
2
+ * vue v3.5.8
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.5.7
2
+ * vue v3.5.8
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -667,7 +667,7 @@ var Vue = (function (exports) {
667
667
  link.dep.activeLink = link;
668
668
  }
669
669
  }
670
- function cleanupDeps(sub) {
670
+ function cleanupDeps(sub, fromComputed = false) {
671
671
  let head;
672
672
  let tail = sub.depsTail;
673
673
  let link = tail;
@@ -675,7 +675,7 @@ var Vue = (function (exports) {
675
675
  const prev = link.prevDep;
676
676
  if (link.version === -1) {
677
677
  if (link === tail) tail = prev;
678
- removeSub(link);
678
+ removeSub(link, fromComputed);
679
679
  removeDep(link);
680
680
  } else {
681
681
  head = link;
@@ -730,7 +730,7 @@ var Vue = (function (exports) {
730
730
  } finally {
731
731
  activeSub = prevSub;
732
732
  shouldTrack = prevShouldTrack;
733
- cleanupDeps(computed);
733
+ cleanupDeps(computed, true);
734
734
  computed.flags &= ~2;
735
735
  }
736
736
  }
@@ -10460,7 +10460,7 @@ Component that was made reactive: `,
10460
10460
  return true;
10461
10461
  }
10462
10462
 
10463
- const version = "3.5.7";
10463
+ const version = "3.5.8";
10464
10464
  const warn = warn$1 ;
10465
10465
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
10466
10466
  const devtools = devtools$1 ;