vue 3.2.34 → 3.2.35
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.esm-browser.js +2 -2
- package/dist/vue.esm-browser.prod.js +1 -1
- package/dist/vue.global.js +2 -2
- package/dist/vue.global.prod.js +1 -1
- package/dist/vue.runtime.esm-browser.js +2 -2
- package/dist/vue.runtime.esm-browser.prod.js +1 -1
- package/dist/vue.runtime.global.js +2 -2
- package/dist/vue.runtime.global.prod.js +1 -1
- package/package.json +6 -6
package/dist/vue.global.js
CHANGED
|
@@ -6109,7 +6109,7 @@ var Vue = (function (exports) {
|
|
|
6109
6109
|
// #5728 empty text node inside a slot can cause hydration failure
|
|
6110
6110
|
// because the server rendered HTML won't contain a text node
|
|
6111
6111
|
if (vnode.children === '') {
|
|
6112
|
-
insert((vnode.el = createText('')), node
|
|
6112
|
+
insert((vnode.el = createText('')), parentNode(node), node);
|
|
6113
6113
|
nextNode = node;
|
|
6114
6114
|
}
|
|
6115
6115
|
else {
|
|
@@ -9262,7 +9262,7 @@ var Vue = (function (exports) {
|
|
|
9262
9262
|
}
|
|
9263
9263
|
|
|
9264
9264
|
// Core API ------------------------------------------------------------------
|
|
9265
|
-
const version = "3.2.
|
|
9265
|
+
const version = "3.2.35";
|
|
9266
9266
|
/**
|
|
9267
9267
|
* SSR utils for \@vue/server-renderer. Only exposed in cjs builds.
|
|
9268
9268
|
* @internal
|