diff --git a/packages/runtime-vapor/__tests__/componentSlots.spec.ts b/packages/runtime-vapor/__tests__/componentSlots.spec.ts index 2ea5715be..987130820 100644 --- a/packages/runtime-vapor/__tests__/componentSlots.spec.ts +++ b/packages/runtime-vapor/__tests__/componentSlots.spec.ts @@ -157,6 +157,40 @@ describe('component: slots', () => { }) test('the current instance should be kept in the slot', async () => { + let instanceInDefaultSlot: any + let instanceInFooSlot: any + + const Comp = defineComponent({ + render() { + const instance = getCurrentInstance() + instance!.slots.default!() + instance!.slots.foo!() + return template('
')() + }, + }) + + const { instance } = define({ + render() { + return createComponent(Comp, {}, [ + { + default: () => { + instanceInDefaultSlot = getCurrentInstance() + return template('content')() + }, + foo: () => { + instanceInFooSlot = getCurrentInstance() + return template('content')() + }, + }, + ]) + }, + }).render() + + expect(instanceInDefaultSlot).toBe(instance) + expect(instanceInFooSlot).toBe(instance) + }) + + test('the current instance should be kept in the dynamic slots', async () => { let instanceInDefaultSlot: any let instanceInVForSlot: any let instanceInVIfSlot: any diff --git a/packages/runtime-vapor/src/componentSlots.ts b/packages/runtime-vapor/src/componentSlots.ts index 022f1dca3..d0f5e3573 100644 --- a/packages/runtime-vapor/src/componentSlots.ts +++ b/packages/runtime-vapor/src/componentSlots.ts @@ -40,12 +40,17 @@ export function initSlots( if (!rawSlots) return if (!isArray(rawSlots)) rawSlots = [rawSlots] - if (rawSlots.length === 1 && !isDynamicSlotFn(rawSlots[0])) { - instance.slots = rawSlots[0] + if (!rawSlots.some(slot => isDynamicSlotFn(slot))) { + instance.slots = {} + // with ctx + const slots = rawSlots[0] as StaticSlots + for (const name in slots) { + registerSlot(name, slots[name]) + } return } - const resolved: StaticSlots = (instance.slots = shallowReactive({})) + instance.slots = shallowReactive({}) const keys: Set