vue 3.4.13 → 3.4.14

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.13
2
+ * vue v3.4.14
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.13
2
+ * vue v3.4.14
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -633,7 +633,7 @@ var Vue = (function (exports) {
633
633
  if (dep.get(effect2) !== effect2._trackId) {
634
634
  continue;
635
635
  }
636
- if (effect2._dirtyLevel < dirtyLevel) {
636
+ if (effect2._dirtyLevel < dirtyLevel && !(effect2._runnings && !effect2.allowRecurse)) {
637
637
  const lastDirtyLevel = effect2._dirtyLevel;
638
638
  effect2._dirtyLevel = dirtyLevel;
639
639
  if (lastDirtyLevel === 0) {
@@ -9563,7 +9563,7 @@ Component that was made reactive: `,
9563
9563
  return true;
9564
9564
  }
9565
9565
 
9566
- const version = "3.4.13";
9566
+ const version = "3.4.14";
9567
9567
  const warn = warn$1 ;
9568
9568
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
9569
9569
  const devtools = devtools$1 ;