@vue/compiler-core 3.5.5 → 3.5.7
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compiler-core v3.5.
|
|
2
|
+
* @vue/compiler-core v3.5.7
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -6323,7 +6323,7 @@ const transformModel = (dir, node, context) => {
|
|
|
6323
6323
|
);
|
|
6324
6324
|
return createTransformProps();
|
|
6325
6325
|
}
|
|
6326
|
-
const rawExp = exp.loc.source;
|
|
6326
|
+
const rawExp = exp.loc.source.trim();
|
|
6327
6327
|
const expString = exp.type === 4 ? exp.content : rawExp;
|
|
6328
6328
|
const bindingType = context.bindingMetadata[rawExp];
|
|
6329
6329
|
if (bindingType === "props" || bindingType === "props-aliased") {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compiler-core v3.5.
|
|
2
|
+
* @vue/compiler-core v3.5.7
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -6205,7 +6205,7 @@ const transformModel = (dir, node, context) => {
|
|
|
6205
6205
|
);
|
|
6206
6206
|
return createTransformProps();
|
|
6207
6207
|
}
|
|
6208
|
-
const rawExp = exp.loc.source;
|
|
6208
|
+
const rawExp = exp.loc.source.trim();
|
|
6209
6209
|
const expString = exp.type === 4 ? exp.content : rawExp;
|
|
6210
6210
|
const bindingType = context.bindingMetadata[rawExp];
|
|
6211
6211
|
if (bindingType === "props" || bindingType === "props-aliased") {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compiler-core v3.5.
|
|
2
|
+
* @vue/compiler-core v3.5.7
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -5473,7 +5473,7 @@ const transformModel = (dir, node, context) => {
|
|
|
5473
5473
|
);
|
|
5474
5474
|
return createTransformProps();
|
|
5475
5475
|
}
|
|
5476
|
-
const rawExp = exp.loc.source;
|
|
5476
|
+
const rawExp = exp.loc.source.trim();
|
|
5477
5477
|
const expString = exp.type === 4 ? exp.content : rawExp;
|
|
5478
5478
|
const bindingType = context.bindingMetadata[rawExp];
|
|
5479
5479
|
if (bindingType === "props" || bindingType === "props-aliased") {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue/compiler-core",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.7",
|
|
4
4
|
"description": "@vue/compiler-core",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "dist/compiler-core.esm-bundler.js",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"entities": "^4.5.0",
|
|
51
51
|
"estree-walker": "^2.0.2",
|
|
52
52
|
"source-map-js": "^1.2.0",
|
|
53
|
-
"@vue/shared": "3.5.
|
|
53
|
+
"@vue/shared": "3.5.7"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@babel/types": "^7.25.2"
|