Closed
Description
In svelte 2 it was possible to pass slots option when creating new component:
new Component({
target: element,
slots: { slot_name1: element1, slot_name2: element2, ... },
});
In svelte 3 slots options seems doesn't work. And there is no way to set slots after component instance is created.
This is needed to properly integrate svelte components that using slots into other frameworks.