vue 3.4.24 → 3.4.25
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 +10 -8
- package/dist/vue.esm-browser.prod.js +3 -3
- package/dist/vue.esm-bundler.js +1 -1
- package/dist/vue.global.js +10 -8
- package/dist/vue.global.prod.js +3 -3
- package/dist/vue.runtime.esm-browser.js +10 -8
- package/dist/vue.runtime.esm-browser.prod.js +3 -3
- package/dist/vue.runtime.esm-bundler.js +1 -1
- package/dist/vue.runtime.global.js +10 -8
- package/dist/vue.runtime.global.prod.js +4 -4
- package/package.json +6 -6
package/dist/vue.esm-bundler.js
CHANGED
package/dist/vue.global.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* vue v3.4.
|
|
2
|
+
* vue v3.4.25
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -3953,11 +3953,13 @@ If this is a native custom element, make sure to exclude it from component resol
|
|
|
3953
3953
|
return vnode.component.subTree;
|
|
3954
3954
|
}
|
|
3955
3955
|
const { shapeFlag, children } = vnode;
|
|
3956
|
-
if (
|
|
3957
|
-
|
|
3958
|
-
|
|
3959
|
-
|
|
3960
|
-
|
|
3956
|
+
if (children) {
|
|
3957
|
+
if (shapeFlag & 16) {
|
|
3958
|
+
return children[0];
|
|
3959
|
+
}
|
|
3960
|
+
if (shapeFlag & 32 && isFunction(children.default)) {
|
|
3961
|
+
return children.default();
|
|
3962
|
+
}
|
|
3961
3963
|
}
|
|
3962
3964
|
}
|
|
3963
3965
|
function setTransitionHooks(vnode, hooks) {
|
|
@@ -5557,7 +5559,7 @@ If you want to remount the same app, move your app creation logic into a factory
|
|
|
5557
5559
|
return !!(currentInstance || currentRenderingInstance || currentApp);
|
|
5558
5560
|
}
|
|
5559
5561
|
|
|
5560
|
-
const internalObjectProto =
|
|
5562
|
+
const internalObjectProto = {};
|
|
5561
5563
|
const createInternalObject = () => Object.create(internalObjectProto);
|
|
5562
5564
|
const isInternalObject = (obj) => Object.getPrototypeOf(obj) === internalObjectProto;
|
|
5563
5565
|
|
|
@@ -9614,7 +9616,7 @@ Component that was made reactive: `,
|
|
|
9614
9616
|
return true;
|
|
9615
9617
|
}
|
|
9616
9618
|
|
|
9617
|
-
const version = "3.4.
|
|
9619
|
+
const version = "3.4.25";
|
|
9618
9620
|
const warn = warn$1 ;
|
|
9619
9621
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
9620
9622
|
const devtools = devtools$1 ;
|