@vue/runtime-core 3.4.0-beta.3 → 3.4.0-beta.4
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/runtime-core.cjs.js
CHANGED
|
@@ -412,8 +412,10 @@ function checkRecursiveUpdates(seen, fn) {
|
|
|
412
412
|
if (count > RECURSION_LIMIT) {
|
|
413
413
|
const instance = fn.ownerInstance;
|
|
414
414
|
const componentName = instance && getComponentName(instance.type);
|
|
415
|
-
|
|
416
|
-
`Maximum recursive updates exceeded${componentName ? ` in component <${componentName}>` : ``}. This means you have a reactive effect that is mutating its own dependencies and thus recursively triggering itself. Possible sources include component template, render function, updated hook or watcher source function
|
|
415
|
+
handleError(
|
|
416
|
+
`Maximum recursive updates exceeded${componentName ? ` in component <${componentName}>` : ``}. This means you have a reactive effect that is mutating its own dependencies and thus recursively triggering itself. Possible sources include component template, render function, updated hook or watcher source function.`,
|
|
417
|
+
null,
|
|
418
|
+
10
|
|
417
419
|
);
|
|
418
420
|
return true;
|
|
419
421
|
} else {
|
|
@@ -5053,7 +5055,7 @@ function propHasMismatch(el, key, clientValue) {
|
|
|
5053
5055
|
let actual;
|
|
5054
5056
|
let expected;
|
|
5055
5057
|
if (key === "class") {
|
|
5056
|
-
actual = el.
|
|
5058
|
+
actual = el.getAttribute("class");
|
|
5057
5059
|
expected = shared.normalizeClass(clientValue);
|
|
5058
5060
|
if (actual !== expected) {
|
|
5059
5061
|
mismatchType = mismatchKey = `class`;
|
|
@@ -7943,7 +7945,7 @@ function isMemoSame(cached, memo) {
|
|
|
7943
7945
|
return true;
|
|
7944
7946
|
}
|
|
7945
7947
|
|
|
7946
|
-
const version = "3.4.0-beta.
|
|
7948
|
+
const version = "3.4.0-beta.4";
|
|
7947
7949
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
7948
7950
|
const _ssrUtils = {
|
|
7949
7951
|
createComponentInstance,
|
|
@@ -416,8 +416,10 @@ function checkRecursiveUpdates(seen, fn) {
|
|
|
416
416
|
if (count > RECURSION_LIMIT) {
|
|
417
417
|
const instance = fn.ownerInstance;
|
|
418
418
|
const componentName = instance && getComponentName(instance.type);
|
|
419
|
-
|
|
420
|
-
`Maximum recursive updates exceeded${componentName ? ` in component <${componentName}>` : ``}. This means you have a reactive effect that is mutating its own dependencies and thus recursively triggering itself. Possible sources include component template, render function, updated hook or watcher source function
|
|
419
|
+
handleError(
|
|
420
|
+
`Maximum recursive updates exceeded${componentName ? ` in component <${componentName}>` : ``}. This means you have a reactive effect that is mutating its own dependencies and thus recursively triggering itself. Possible sources include component template, render function, updated hook or watcher source function.`,
|
|
421
|
+
null,
|
|
422
|
+
10
|
|
421
423
|
);
|
|
422
424
|
return true;
|
|
423
425
|
} else {
|
|
@@ -5073,7 +5075,7 @@ function propHasMismatch(el, key, clientValue) {
|
|
|
5073
5075
|
let actual;
|
|
5074
5076
|
let expected;
|
|
5075
5077
|
if (key === "class") {
|
|
5076
|
-
actual = el.
|
|
5078
|
+
actual = el.getAttribute("class");
|
|
5077
5079
|
expected = normalizeClass(clientValue);
|
|
5078
5080
|
if (actual !== expected) {
|
|
5079
5081
|
mismatchType = mismatchKey = `class`;
|
|
@@ -8017,7 +8019,7 @@ function isMemoSame(cached, memo) {
|
|
|
8017
8019
|
return true;
|
|
8018
8020
|
}
|
|
8019
8021
|
|
|
8020
|
-
const version = "3.4.0-beta.
|
|
8022
|
+
const version = "3.4.0-beta.4";
|
|
8021
8023
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
8022
8024
|
const _ssrUtils = {
|
|
8023
8025
|
createComponentInstance,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue/runtime-core",
|
|
3
|
-
"version": "3.4.0-beta.
|
|
3
|
+
"version": "3.4.0-beta.4",
|
|
4
4
|
"description": "@vue/runtime-core",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "dist/runtime-core.esm-bundler.js",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-core#readme",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@vue/
|
|
36
|
-
"@vue/
|
|
35
|
+
"@vue/shared": "3.4.0-beta.4",
|
|
36
|
+
"@vue/reactivity": "3.4.0-beta.4"
|
|
37
37
|
}
|
|
38
38
|
}
|