Skip to content

Commit d27c128

Browse files
authored
fix(compiler-sfc): fix macro usage in multi-variable declaration (#12873)
1 parent bb59751 commit d27c128

File tree

3 files changed

+34
-3
lines changed

3 files changed

+34
-3
lines changed

packages/compiler-sfc/src/compileScript.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -910,11 +910,11 @@ export function compileScript(
910910
} else {
911911
let start = decl.start! + startOffset
912912
let end = decl.end! + startOffset
913-
if (i < total - 1) {
914-
// not the last one, locate the start of the next
913+
if (i === 0) {
914+
// first one, locate the start of the next
915915
end = node.declarations[i + 1].start! + startOffset
916916
} else {
917-
// last one, locate the end of the prev
917+
// not first one, locate the end of the prev
918918
start = node.declarations[i - 1].end! + startOffset
919919
}
920920
s.remove(start, end)

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

+16
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,22 @@ return { props, a, emit }
288288
}"
289289
`;
290290
291+
exports[`SFC compile <script setup> > defineProps/defineEmits in multi-variable declaration fix #6757 1`] = `
292+
"export default {
293+
props: ['item'],
294+
emits: ['a'],
295+
setup(__props, { emit }) {
296+
297+
const props = __props
298+
299+
const a = 1;
300+
301+
return { a, props, emit }
302+
}
303+
304+
}"
305+
`;
306+
291307
exports[`SFC compile <script setup> > dev mode import usage check > TS annotations 1`] = `
292308
"import { defineComponent as _defineComponent } from 'vue'
293309
import { Foo, Baz, Qux, Fred } from './x'

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

+15
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,21 @@ const myEmit = defineEmits(['foo', 'bar'])
141141
expect(content).toMatch(`emits: ['a'],`)
142142
})
143143

144+
// vuejs/core #6757
145+
test('defineProps/defineEmits in multi-variable declaration fix #6757 ', () => {
146+
const { content } = compile(`
147+
<script setup>
148+
const a = 1,
149+
props = defineProps(['item']),
150+
emit = defineEmits(['a']);
151+
</script>
152+
`)
153+
assertCode(content)
154+
expect(content).toMatch(`const a = 1;`) // test correct removal
155+
expect(content).toMatch(`props: ['item'],`)
156+
expect(content).toMatch(`emits: ['a'],`)
157+
})
158+
144159
test('defineProps/defineEmits in multi-variable declaration (full removal)', () => {
145160
const { content } = compile(`
146161
<script setup>

0 commit comments

Comments
 (0)