diff --git a/packages/compiler-sfc/__tests__/__snapshots__/compileScript.spec.ts.snap b/packages/compiler-sfc/__tests__/__snapshots__/compileScript.spec.ts.snap index cbe511f1d07..9c9860ba36f 100644 --- a/packages/compiler-sfc/__tests__/__snapshots__/compileScript.spec.ts.snap +++ b/packages/compiler-sfc/__tests__/__snapshots__/compileScript.spec.ts.snap @@ -739,6 +739,71 @@ return { a, props, emit } }" `; +exports[`SFC compile + `) + assertCode(content) + expect(bindings).toStrictEqual({ + mySlots: BindingTypes.SETUP_CONST + }) + // should remove defineOptions import and call + expect(content).not.toMatch('defineSlots') + // should generate correct setup signature + expect(content).toMatch(`setup(__props, { expose, slots: mySlots }) {`) + // should include context options in default export + expect(content).toMatch(`export default { + slots: ['foo', 'bar'],`) + }) + + test('defineProps/defineSlots in multi-variable declaration', () => { + const { content } = compile(` + + `) + assertCode(content) + expect(content).toMatch(`const a = 1;`) // test correct removal + expect(content).toMatch(`props: ['item'],`) + expect(content).toMatch(`slots: ['a'],`) + }) + + test('defineProps/defineSlots in multi-variable declaration fix #6757 ', () => { + const { content } = compile(` + + `) + assertCode(content) + expect(content).toMatch(`const a = 1;`) // test correct removal + expect(content).toMatch(`props: ['item'],`) + expect(content).toMatch(`slots: ['a'],`) + }) + + test('defineProps/defineSlots in multi-variable declaration (full removal)', () => { + const { content } = compile(` + + `) + assertCode(content) + expect(content).toMatch(`props: ['item'],`) + expect(content).toMatch(`slots: ['a'],`) + }) + test('defineExpose()', () => { const { content } = compile(`