We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
check https://svelte.dev/repl/0788779fb83b48eda24494eeb66a6f61?version=4.2.19
the REPL gets stuck immediately with ten thousands of logs so I post the code as follows.
App.svelte
<script> import Select from './Component2.svelte'; let data = { value:{ label:'One', value:'one' }, item:[ { label:'One', value:'one' }, { label:'Two', value:'two' } ] } $: console.log(data) </script> <Select bind:data />
Component2.svelte
<script> import Select from 'svelte-select'; export let data $: console.log(data) </script> <Select bind:value={data.value} items={data.item}/>
I'm new to svelte so I don't know if it's my fault. But it seems to work well with other components except svelte-select
The text was updated successfully, but these errors were encountered:
No branches or pull requests
check https://svelte.dev/repl/0788779fb83b48eda24494eeb66a6f61?version=4.2.19
the REPL gets stuck immediately with ten thousands of logs so I post the code as follows.
App.svelte
Component2.svelte
I'm new to svelte so I don't know if it's my fault. But it seems to work well with other components except svelte-select
The text was updated successfully, but these errors were encountered: