@vue/compiler-ssr 3.2.34 → 3.2.37

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.
@@ -135,6 +135,10 @@ const ssrTransformSlotOutlet = (node, context) => {
135
135
  compilerDom.resolveComponentType(parent, context, true) === compilerDom.TRANSITION &&
136
136
  parent.children.filter(c => c.type === 1 /* ELEMENT */).length === 1) {
137
137
  method = SSR_RENDER_SLOT_INNER;
138
+ if (!(context.scopeId && context.slotted !== false)) {
139
+ args.push('null');
140
+ }
141
+ args.push('true');
138
142
  }
139
143
  node.ssrCodegenNode = compilerDom.createCallExpression(context.helper(method), args);
140
144
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vue/compiler-ssr",
3
- "version": "3.2.34",
3
+ "version": "3.2.37",
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.34",
32
- "@vue/compiler-dom": "3.2.34"
31
+ "@vue/shared": "3.2.37",
32
+ "@vue/compiler-dom": "3.2.37"
33
33
  }
34
34
  }