-
- Notifications
You must be signed in to change notification settings - Fork 4.7k
Closed
Labels
Description
When compiling to custom elements, getContext returns undefined
// Select.svelte import { setContext } from 'svelte' setContext('select', { selected: 'one' }) // SelectOption.svelte import { getContext } from 'svelte' const { selected } = getContext('select') // undefineddhonx, gotys, neurosoup, trusz, lukasIO and 1 more