@vue/compat 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.
- package/dist/vue.cjs.js +4 -4
- package/dist/vue.cjs.prod.js +4 -4
- package/dist/vue.esm-browser.js +4 -4
- package/dist/vue.esm-browser.prod.js +3 -3
- package/dist/vue.esm-bundler.js +4 -4
- package/dist/vue.global.js +4 -4
- package/dist/vue.global.prod.js +3 -3
- package/dist/vue.runtime.esm-browser.js +4 -4
- package/dist/vue.runtime.esm-browser.prod.js +3 -3
- package/dist/vue.runtime.esm-bundler.js +4 -4
- package/dist/vue.runtime.global.js +4 -4
- package/dist/vue.runtime.global.prod.js +3 -3
- package/package.json +2 -2
package/dist/vue.cjs.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compat v3.4.
|
|
2
|
+
* @vue/compat v3.4.14
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -681,7 +681,7 @@ function triggerEffects(dep, dirtyLevel, debuggerEventExtraInfo) {
|
|
|
681
681
|
if (dep.get(effect2) !== effect2._trackId) {
|
|
682
682
|
continue;
|
|
683
683
|
}
|
|
684
|
-
if (effect2._dirtyLevel < dirtyLevel) {
|
|
684
|
+
if (effect2._dirtyLevel < dirtyLevel && !(effect2._runnings && !effect2.allowRecurse)) {
|
|
685
685
|
const lastDirtyLevel = effect2._dirtyLevel;
|
|
686
686
|
effect2._dirtyLevel = dirtyLevel;
|
|
687
687
|
if (lastDirtyLevel === 0) {
|
|
@@ -6566,7 +6566,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
|
|
|
6566
6566
|
return vm;
|
|
6567
6567
|
}
|
|
6568
6568
|
}
|
|
6569
|
-
Vue.version = `2.6.14-compat:${"3.4.
|
|
6569
|
+
Vue.version = `2.6.14-compat:${"3.4.14"}`;
|
|
6570
6570
|
Vue.config = singletonApp.config;
|
|
6571
6571
|
Vue.use = (p, ...options) => {
|
|
6572
6572
|
if (p && isFunction(p.install)) {
|
|
@@ -11398,7 +11398,7 @@ function isMemoSame(cached, memo) {
|
|
|
11398
11398
|
return true;
|
|
11399
11399
|
}
|
|
11400
11400
|
|
|
11401
|
-
const version = "3.4.
|
|
11401
|
+
const version = "3.4.14";
|
|
11402
11402
|
const warn = warn$1 ;
|
|
11403
11403
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
11404
11404
|
const devtools = devtools$1 ;
|
package/dist/vue.cjs.prod.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compat v3.4.
|
|
2
|
+
* @vue/compat v3.4.14
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -603,7 +603,7 @@ function triggerEffects(dep, dirtyLevel, debuggerEventExtraInfo) {
|
|
|
603
603
|
if (dep.get(effect2) !== effect2._trackId) {
|
|
604
604
|
continue;
|
|
605
605
|
}
|
|
606
|
-
if (effect2._dirtyLevel < dirtyLevel) {
|
|
606
|
+
if (effect2._dirtyLevel < dirtyLevel && !(effect2._runnings && !effect2.allowRecurse)) {
|
|
607
607
|
const lastDirtyLevel = effect2._dirtyLevel;
|
|
608
608
|
effect2._dirtyLevel = dirtyLevel;
|
|
609
609
|
if (lastDirtyLevel === 0) {
|
|
@@ -5250,7 +5250,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
|
|
|
5250
5250
|
return vm;
|
|
5251
5251
|
}
|
|
5252
5252
|
}
|
|
5253
|
-
Vue.version = `2.6.14-compat:${"3.4.
|
|
5253
|
+
Vue.version = `2.6.14-compat:${"3.4.14"}`;
|
|
5254
5254
|
Vue.config = singletonApp.config;
|
|
5255
5255
|
Vue.use = (p, ...options) => {
|
|
5256
5256
|
if (p && isFunction(p.install)) {
|
|
@@ -9109,7 +9109,7 @@ function isMemoSame(cached, memo) {
|
|
|
9109
9109
|
return true;
|
|
9110
9110
|
}
|
|
9111
9111
|
|
|
9112
|
-
const version = "3.4.
|
|
9112
|
+
const version = "3.4.14";
|
|
9113
9113
|
const warn$1 = NOOP;
|
|
9114
9114
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
9115
9115
|
const devtools = void 0;
|
package/dist/vue.esm-browser.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compat v3.4.
|
|
2
|
+
* @vue/compat v3.4.14
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -630,7 +630,7 @@ function triggerEffects(dep, dirtyLevel, debuggerEventExtraInfo) {
|
|
|
630
630
|
if (dep.get(effect2) !== effect2._trackId) {
|
|
631
631
|
continue;
|
|
632
632
|
}
|
|
633
|
-
if (effect2._dirtyLevel < dirtyLevel) {
|
|
633
|
+
if (effect2._dirtyLevel < dirtyLevel && !(effect2._runnings && !effect2.allowRecurse)) {
|
|
634
634
|
const lastDirtyLevel = effect2._dirtyLevel;
|
|
635
635
|
effect2._dirtyLevel = dirtyLevel;
|
|
636
636
|
if (lastDirtyLevel === 0) {
|
|
@@ -6488,7 +6488,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
|
|
|
6488
6488
|
return vm;
|
|
6489
6489
|
}
|
|
6490
6490
|
}
|
|
6491
|
-
Vue.version = `2.6.14-compat:${"3.4.
|
|
6491
|
+
Vue.version = `2.6.14-compat:${"3.4.14"}`;
|
|
6492
6492
|
Vue.config = singletonApp.config;
|
|
6493
6493
|
Vue.use = (p, ...options) => {
|
|
6494
6494
|
if (p && isFunction(p.install)) {
|
|
@@ -11303,7 +11303,7 @@ function isMemoSame(cached, memo) {
|
|
|
11303
11303
|
return true;
|
|
11304
11304
|
}
|
|
11305
11305
|
|
|
11306
|
-
const version = "3.4.
|
|
11306
|
+
const version = "3.4.14";
|
|
11307
11307
|
const warn = warn$1 ;
|
|
11308
11308
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
11309
11309
|
const devtools = devtools$1 ;
|