gitea push

This commit is contained in:
2026-05-09 12:19:29 -06:00
parent 06113c95b8
commit 429461e985
1481 changed files with 74306 additions and 52475 deletions
+18 -8
View File
@@ -1,5 +1,5 @@
/**
* @vue/reactivity v3.5.33
* @vue/reactivity v3.5.34
* (c) 2018-present Yuxi (Evan) You and Vue contributors
* @license MIT
**/
@@ -31,12 +31,18 @@ class EffectScope {
*/
this.cleanups = [];
this._isPaused = false;
this._warnOnRun = true;
this.__v_skip = true;
this.parent = activeEffectScope;
if (!detached && activeEffectScope) {
this.index = (activeEffectScope.scopes || (activeEffectScope.scopes = [])).push(
this
) - 1;
if (activeEffectScope.active) {
this.parent = activeEffectScope;
this.index = (activeEffectScope.scopes || (activeEffectScope.scopes = [])).push(
this
) - 1;
} else {
this._active = false;
this._warnOnRun = false;
}
}
}
get active() {
@@ -84,7 +90,7 @@ class EffectScope {
} finally {
activeEffectScope = currentEffectScope;
}
} else if (!!(process.env.NODE_ENV !== "production")) {
} else if (!!(process.env.NODE_ENV !== "production") && this._warnOnRun) {
warn(`cannot run an inactive effect scope.`);
}
}
@@ -208,8 +214,12 @@ class ReactiveEffect {
*/
this.cleanup = void 0;
this.scheduler = void 0;
if (activeEffectScope && activeEffectScope.active) {
activeEffectScope.effects.push(this);
if (activeEffectScope) {
if (activeEffectScope.active) {
activeEffectScope.effects.push(this);
} else {
this.flags &= -2;
}
}
}
pause() {