vue 3.4.35 → 3.4.36
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 +1 -1
- package/dist/vue.cjs.prod.js +1 -1
- package/dist/vue.esm-browser.js +4 -3
- package/dist/vue.esm-browser.prod.js +2 -2
- package/dist/vue.esm-bundler.js +1 -1
- package/dist/vue.global.js +4 -3
- package/dist/vue.global.prod.js +2 -2
- package/dist/vue.runtime.esm-browser.js +4 -3
- package/dist/vue.runtime.esm-browser.prod.js +2 -2
- package/dist/vue.runtime.esm-bundler.js +1 -1
- package/dist/vue.runtime.global.js +4 -3
- package/dist/vue.runtime.global.prod.js +2 -2
- package/package.json +6 -6
package/dist/vue.cjs.js
CHANGED
package/dist/vue.cjs.prod.js
CHANGED
package/dist/vue.esm-browser.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* vue v3.4.
|
|
2
|
+
* vue v3.4.36
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -5484,6 +5484,7 @@ Server rendered element contains more child nodes than client vdom.`
|
|
|
5484
5484
|
}
|
|
5485
5485
|
if (props) {
|
|
5486
5486
|
{
|
|
5487
|
+
const isCustomElement = el.tagName.includes("-");
|
|
5487
5488
|
for (const key in props) {
|
|
5488
5489
|
if (// #11189 skip if this node has directives that have created hooks
|
|
5489
5490
|
// as it could have mutated the DOM in any possible way
|
|
@@ -5491,7 +5492,7 @@ Server rendered element contains more child nodes than client vdom.`
|
|
|
5491
5492
|
logMismatchError();
|
|
5492
5493
|
}
|
|
5493
5494
|
if (forcePatch && (key.endsWith("value") || key === "indeterminate") || isOn(key) && !isReservedProp(key) || // force hydrate v-bind with .prop modifiers
|
|
5494
|
-
key[0] === ".") {
|
|
5495
|
+
key[0] === "." || isCustomElement) {
|
|
5495
5496
|
patchProp(el, key, null, props[key], void 0, parentComponent);
|
|
5496
5497
|
}
|
|
5497
5498
|
}
|
|
@@ -9678,7 +9679,7 @@ function isMemoSame(cached, memo) {
|
|
|
9678
9679
|
return true;
|
|
9679
9680
|
}
|
|
9680
9681
|
|
|
9681
|
-
const version = "3.4.
|
|
9682
|
+
const version = "3.4.36";
|
|
9682
9683
|
const warn = warn$1 ;
|
|
9683
9684
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
9684
9685
|
const devtools = devtools$1 ;
|