-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Open
Labels
Description
Describe the bug
In runes mode
let {data} = $props()
returns data which is not bindable to eg. input elements etc.
afaik this worked before and its also working when using 'let mode'
Reproduction
import type { PageServerLoad } from './$types';
export const load = (async ({params}) => {
return {name: params.name};
}) satisfies PageServerLoad;
<script lang="ts">
let {data} = $props()
</script>
<p>{data.name}</p>
<input type="text" bind:value={data.name} />
Logs
No response
System Info
I dont get output since I'm using pnpm, help appreciated
Severity
annoyance
Additional Information
No response
hijhem, adolfo, alexiglesias93, MaddyGuthridge, Coinhexa and 2 more