@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
package/dist/vue.esm-bundler.js
CHANGED
|
@@ -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
|
**/
|
|
@@ -4556,11 +4556,13 @@ function getKeepAliveChild(vnode) {
|
|
|
4556
4556
|
return vnode.component.subTree;
|
|
4557
4557
|
}
|
|
4558
4558
|
const { shapeFlag, children } = vnode;
|
|
4559
|
-
if (
|
|
4560
|
-
|
|
4561
|
-
|
|
4562
|
-
|
|
4563
|
-
|
|
4559
|
+
if (children) {
|
|
4560
|
+
if (shapeFlag & 16) {
|
|
4561
|
+
return children[0];
|
|
4562
|
+
}
|
|
4563
|
+
if (shapeFlag & 32 && isFunction(children.default)) {
|
|
4564
|
+
return children.default();
|
|
4565
|
+
}
|
|
4564
4566
|
}
|
|
4565
4567
|
}
|
|
4566
4568
|
function setTransitionHooks(vnode, hooks) {
|
|
@@ -6581,7 +6583,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
|
|
|
6581
6583
|
return vm;
|
|
6582
6584
|
}
|
|
6583
6585
|
}
|
|
6584
|
-
Vue.version = `2.6.14-compat:${"3.4.
|
|
6586
|
+
Vue.version = `2.6.14-compat:${"3.4.25"}`;
|
|
6585
6587
|
Vue.config = singletonApp.config;
|
|
6586
6588
|
Vue.use = (p, ...options) => {
|
|
6587
6589
|
if (p && isFunction(p.install)) {
|
|
@@ -7221,7 +7223,7 @@ function shouldSkipAttr(key, instance) {
|
|
|
7221
7223
|
return false;
|
|
7222
7224
|
}
|
|
7223
7225
|
|
|
7224
|
-
const internalObjectProto =
|
|
7226
|
+
const internalObjectProto = {};
|
|
7225
7227
|
const createInternalObject = () => Object.create(internalObjectProto);
|
|
7226
7228
|
const isInternalObject = (obj) => Object.getPrototypeOf(obj) === internalObjectProto;
|
|
7227
7229
|
|
|
@@ -11493,7 +11495,7 @@ function isMemoSame(cached, memo) {
|
|
|
11493
11495
|
return true;
|
|
11494
11496
|
}
|
|
11495
11497
|
|
|
11496
|
-
const version = "3.4.
|
|
11498
|
+
const version = "3.4.25";
|
|
11497
11499
|
const warn = !!(process.env.NODE_ENV !== "production") ? warn$1 : NOOP;
|
|
11498
11500
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
11499
11501
|
const devtools = !!(process.env.NODE_ENV !== "production") || true ? devtools$1 : void 0;
|
package/dist/vue.global.js
CHANGED
|
@@ -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
|
**/
|
|
@@ -4523,11 +4523,13 @@ If this is a native custom element, make sure to exclude it from component resol
|
|
|
4523
4523
|
return vnode.component.subTree;
|
|
4524
4524
|
}
|
|
4525
4525
|
const { shapeFlag, children } = vnode;
|
|
4526
|
-
if (
|
|
4527
|
-
|
|
4528
|
-
|
|
4529
|
-
|
|
4530
|
-
|
|
4526
|
+
if (children) {
|
|
4527
|
+
if (shapeFlag & 16) {
|
|
4528
|
+
return children[0];
|
|
4529
|
+
}
|
|
4530
|
+
if (shapeFlag & 32 && isFunction(children.default)) {
|
|
4531
|
+
return children.default();
|
|
4532
|
+
}
|
|
4531
4533
|
}
|
|
4532
4534
|
}
|
|
4533
4535
|
function setTransitionHooks(vnode, hooks) {
|
|
@@ -6540,7 +6542,7 @@ If this is a native custom element, make sure to exclude it from component resol
|
|
|
6540
6542
|
return vm;
|
|
6541
6543
|
}
|
|
6542
6544
|
}
|
|
6543
|
-
Vue.version = `2.6.14-compat:${"3.4.
|
|
6545
|
+
Vue.version = `2.6.14-compat:${"3.4.25"}`;
|
|
6544
6546
|
Vue.config = singletonApp.config;
|
|
6545
6547
|
Vue.use = (p, ...options) => {
|
|
6546
6548
|
if (p && isFunction(p.install)) {
|
|
@@ -7177,7 +7179,7 @@ If you want to remount the same app, move your app creation logic into a factory
|
|
|
7177
7179
|
return false;
|
|
7178
7180
|
}
|
|
7179
7181
|
|
|
7180
|
-
const internalObjectProto =
|
|
7182
|
+
const internalObjectProto = {};
|
|
7181
7183
|
const createInternalObject = () => Object.create(internalObjectProto);
|
|
7182
7184
|
const isInternalObject = (obj) => Object.getPrototypeOf(obj) === internalObjectProto;
|
|
7183
7185
|
|
|
@@ -11370,7 +11372,7 @@ Component that was made reactive: `,
|
|
|
11370
11372
|
return true;
|
|
11371
11373
|
}
|
|
11372
11374
|
|
|
11373
|
-
const version = "3.4.
|
|
11375
|
+
const version = "3.4.25";
|
|
11374
11376
|
const warn = warn$1 ;
|
|
11375
11377
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
11376
11378
|
const devtools = devtools$1 ;
|