Skip to content

Commit 51fef2c

Browse files
authored
fix(compiler-sfc): add semicolon after defineProps statement (#12879)
1 parent b8c8b3f commit 51fef2c

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

packages/compiler-sfc/src/compileScript.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1125,15 +1125,15 @@ export function compileScript(
11251125
startOffset,
11261126
`\nconst ${propsIdentifier} = __props${
11271127
propsTypeDecl ? ` as ${genSetupPropsType(propsTypeDecl)}` : ``
1128-
}\n`
1128+
};\n`
11291129
)
11301130
}
11311131
if (propsDestructureRestId) {
11321132
s.prependLeft(
11331133
startOffset,
11341134
`\nconst ${propsDestructureRestId} = ${helper(
11351135
`createPropsRestProxy`
1136-
)}(__props, ${JSON.stringify(Object.keys(propsDestructuredBindings))})\n`
1136+
)}(__props, ${JSON.stringify(Object.keys(propsDestructuredBindings))});\n`
11371137
)
11381138
}
11391139

packages/compiler-sfc/test/__snapshots__/compileScript.spec.ts.snap

+8-8
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ export default {
212212
props: propsModel,
213213
setup(__props) {
214214
215-
const props = __props
215+
const props = __props;
216216
217217
218218
@@ -229,7 +229,7 @@ export default {
229229
props: {},
230230
setup(__props) {
231231
232-
const props = __props
232+
const props = __props;
233233
234234
235235
return { props, x }
@@ -245,7 +245,7 @@ exports[`SFC compile <script setup> > defineProps() 1`] = `
245245
},
246246
setup(__props) {
247247
248-
const props = __props
248+
const props = __props;
249249
250250
251251
const bar = 1
@@ -262,7 +262,7 @@ exports[`SFC compile <script setup> > defineProps/defineEmits in multi-variable
262262
emits: ['a'],
263263
setup(__props, { emit }) {
264264
265-
const props = __props
265+
const props = __props;
266266
267267
268268
@@ -278,7 +278,7 @@ exports[`SFC compile <script setup> > defineProps/defineEmits in multi-variable
278278
emits: ['a'],
279279
setup(__props, { emit }) {
280280
281-
const props = __props
281+
const props = __props;
282282
283283
const a = 1;
284284
@@ -835,7 +835,7 @@ export default /*#__PURE__*/_defineComponent({
835835
emits: ['a', 'b'],
836836
setup(__props, { emit }) {
837837
838-
const props = __props
838+
const props = __props;
839839
840840
841841
@@ -924,7 +924,7 @@ const props = __props as {
924924
foo?: string
925925
bar?: number
926926
baz: boolean
927-
}
927+
};
928928
929929
930930
@@ -946,7 +946,7 @@ export default /*#__PURE__*/_defineComponent({
946946
},
947947
setup(__props: any) {
948948
949-
const props = __props as { foo: string, bar?: number, baz: boolean, qux(): number }
949+
const props = __props as { foo: string, bar?: number, baz: boolean, qux(): number };
950950
951951
952952

0 commit comments

Comments
 (0)