@vue/compiler-ssr 3.5.24 → 3.5.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/compiler-ssr.cjs.js +5 -5
- package/package.json +3 -3
package/dist/compiler-ssr.cjs.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compiler-ssr v3.5.
|
|
2
|
+
* @vue/compiler-ssr v3.5.25
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -1138,11 +1138,11 @@ const ssrTransformModel = (dir, node, context) => {
|
|
|
1138
1138
|
}
|
|
1139
1139
|
if (node.tagType === 0) {
|
|
1140
1140
|
const res = { props: [] };
|
|
1141
|
-
const defaultProps = [
|
|
1142
|
-
// default value binding for text type inputs
|
|
1143
|
-
compilerDom.createObjectProperty(`value`, model)
|
|
1144
|
-
];
|
|
1145
1141
|
if (node.tag === "input") {
|
|
1142
|
+
const defaultProps = [
|
|
1143
|
+
// default value binding for text type inputs
|
|
1144
|
+
compilerDom.createObjectProperty(`value`, model)
|
|
1145
|
+
];
|
|
1146
1146
|
const type = compilerDom.findProp(node, "type");
|
|
1147
1147
|
if (type) {
|
|
1148
1148
|
const value = findValueBinding(node);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue/compiler-ssr",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.25",
|
|
4
4
|
"description": "@vue/compiler-ssr",
|
|
5
5
|
"main": "dist/compiler-ssr.cjs.js",
|
|
6
6
|
"types": "dist/compiler-ssr.d.ts",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-ssr#readme",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@vue/shared": "3.5.
|
|
32
|
-
"@vue/compiler-dom": "3.5.
|
|
31
|
+
"@vue/shared": "3.5.25",
|
|
32
|
+
"@vue/compiler-dom": "3.5.25"
|
|
33
33
|
}
|
|
34
34
|
}
|