We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
yield*
1 parent e40f116 commit 0aa74d1Copy full SHA for 0aa74d1
packages/language-core/lib/codegen/template/element.ts
@@ -200,7 +200,7 @@ function* generateComponentBody(
200
yield `const ${functionalVar} = ${
201
options.vueCompilerOptions.checkUnknownProps ? '__VLS_asFunctionalComponent0' : '__VLS_asFunctionalComponent1'
202
}(${componentVar}, new ${componentVar}({${newLine}`;
203
- yield* toString(propCodes);
+ yield toString(propCodes);
204
yield `}))${endOfLine}`;
205
206
yield `const `;
0 commit comments