@vue/compiler-ssr 3.2.41 → 3.2.43

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.
@@ -649,7 +649,8 @@ const ssrTransformComponent = (node, context) => {
649
649
  const wipEntries = [];
650
650
  wipMap$2.set(node, wipEntries);
651
651
  const buildSSRSlotFn = (props, children, loc) => {
652
- const fn = compilerDom.createFunctionExpression([props || `_`, `_push`, `_parent`, `_scopeId`], undefined, // no return, assign body later
652
+ const param0 = (props && compilerDom.stringifyExpression(props)) || `_`;
653
+ const fn = compilerDom.createFunctionExpression([param0, `_push`, `_parent`, `_scopeId`], undefined, // no return, assign body later
653
654
  true, // newline
654
655
  true, // isSlot
655
656
  loc);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vue/compiler-ssr",
3
- "version": "3.2.41",
3
+ "version": "3.2.43",
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.2.41",
32
- "@vue/compiler-dom": "3.2.41"
31
+ "@vue/shared": "3.2.43",
32
+ "@vue/compiler-dom": "3.2.43"
33
33
  }
34
34
  }