@vue/compat 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 +11 -9
- package/dist/vue.cjs.prod.js +11 -9
- package/dist/vue.esm-browser.js +11 -9
- package/dist/vue.esm-browser.prod.js +3 -3
- package/dist/vue.esm-bundler.js +11 -9
- package/dist/vue.global.js +11 -9
- package/dist/vue.global.prod.js +3 -3
- package/dist/vue.runtime.esm-browser.js +11 -9
- package/dist/vue.runtime.esm-browser.prod.js +3 -3
- package/dist/vue.runtime.esm-bundler.js +11 -9
- package/dist/vue.runtime.global.js +11 -9
- package/dist/vue.runtime.global.prod.js +3 -3
- package/package.json +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compat v3.4.
|
|
2
|
+
* @vue/compat v3.4.25
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -4491,11 +4491,13 @@ function getKeepAliveChild(vnode) {
|
|
|
4491
4491
|
return vnode.component.subTree;
|
|
4492
4492
|
}
|
|
4493
4493
|
const { shapeFlag, children } = vnode;
|
|
4494
|
-
if (
|
|
4495
|
-
|
|
4496
|
-
|
|
4497
|
-
|
|
4498
|
-
|
|
4494
|
+
if (children) {
|
|
4495
|
+
if (shapeFlag & 16) {
|
|
4496
|
+
return children[0];
|
|
4497
|
+
}
|
|
4498
|
+
if (shapeFlag & 32 && isFunction(children.default)) {
|
|
4499
|
+
return children.default();
|
|
4500
|
+
}
|
|
4499
4501
|
}
|
|
4500
4502
|
}
|
|
4501
4503
|
function setTransitionHooks(vnode, hooks) {
|
|
@@ -6516,7 +6518,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
|
|
|
6516
6518
|
return vm;
|
|
6517
6519
|
}
|
|
6518
6520
|
}
|
|
6519
|
-
Vue.version = `2.6.14-compat:${"3.4.
|
|
6521
|
+
Vue.version = `2.6.14-compat:${"3.4.25"}`;
|
|
6520
6522
|
Vue.config = singletonApp.config;
|
|
6521
6523
|
Vue.use = (p, ...options) => {
|
|
6522
6524
|
if (p && isFunction(p.install)) {
|
|
@@ -7156,7 +7158,7 @@ function shouldSkipAttr(key, instance) {
|
|
|
7156
7158
|
return false;
|
|
7157
7159
|
}
|
|
7158
7160
|
|
|
7159
|
-
const internalObjectProto =
|
|
7161
|
+
const internalObjectProto = {};
|
|
7160
7162
|
const createInternalObject = () => Object.create(internalObjectProto);
|
|
7161
7163
|
const isInternalObject = (obj) => Object.getPrototypeOf(obj) === internalObjectProto;
|
|
7162
7164
|
|
|
@@ -11428,7 +11430,7 @@ function isMemoSame(cached, memo) {
|
|
|
11428
11430
|
return true;
|
|
11429
11431
|
}
|
|
11430
11432
|
|
|
11431
|
-
const version = "3.4.
|
|
11433
|
+
const version = "3.4.25";
|
|
11432
11434
|
const warn = !!(process.env.NODE_ENV !== "production") ? warn$1 : NOOP;
|
|
11433
11435
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
11434
11436
|
const devtools = !!(process.env.NODE_ENV !== "production") || true ? devtools$1 : void 0;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compat v3.4.
|
|
2
|
+
* @vue/compat v3.4.25
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -4458,11 +4458,13 @@ If this is a native custom element, make sure to exclude it from component resol
|
|
|
4458
4458
|
return vnode.component.subTree;
|
|
4459
4459
|
}
|
|
4460
4460
|
const { shapeFlag, children } = vnode;
|
|
4461
|
-
if (
|
|
4462
|
-
|
|
4463
|
-
|
|
4464
|
-
|
|
4465
|
-
|
|
4461
|
+
if (children) {
|
|
4462
|
+
if (shapeFlag & 16) {
|
|
4463
|
+
return children[0];
|
|
4464
|
+
}
|
|
4465
|
+
if (shapeFlag & 32 && isFunction(children.default)) {
|
|
4466
|
+
return children.default();
|
|
4467
|
+
}
|
|
4466
4468
|
}
|
|
4467
4469
|
}
|
|
4468
4470
|
function setTransitionHooks(vnode, hooks) {
|
|
@@ -6475,7 +6477,7 @@ If this is a native custom element, make sure to exclude it from component resol
|
|
|
6475
6477
|
return vm;
|
|
6476
6478
|
}
|
|
6477
6479
|
}
|
|
6478
|
-
Vue.version = `2.6.14-compat:${"3.4.
|
|
6480
|
+
Vue.version = `2.6.14-compat:${"3.4.25"}`;
|
|
6479
6481
|
Vue.config = singletonApp.config;
|
|
6480
6482
|
Vue.use = (p, ...options) => {
|
|
6481
6483
|
if (p && isFunction(p.install)) {
|
|
@@ -7112,7 +7114,7 @@ If you want to remount the same app, move your app creation logic into a factory
|
|
|
7112
7114
|
return false;
|
|
7113
7115
|
}
|
|
7114
7116
|
|
|
7115
|
-
const internalObjectProto =
|
|
7117
|
+
const internalObjectProto = {};
|
|
7116
7118
|
const createInternalObject = () => Object.create(internalObjectProto);
|
|
7117
7119
|
const isInternalObject = (obj) => Object.getPrototypeOf(obj) === internalObjectProto;
|
|
7118
7120
|
|
|
@@ -11305,7 +11307,7 @@ Component that was made reactive: `,
|
|
|
11305
11307
|
return true;
|
|
11306
11308
|
}
|
|
11307
11309
|
|
|
11308
|
-
const version = "3.4.
|
|
11310
|
+
const version = "3.4.25";
|
|
11309
11311
|
const warn = warn$1 ;
|
|
11310
11312
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
11311
11313
|
const devtools = devtools$1 ;
|