Open Rafterman1217 opened 3 months ago
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'
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} />
No response
I dont get output since I'm using pnpm, help appreciated
annoyance
Regarding the system info, simply replace npx with pnpm dlx command.
npx
pnpm dlx
pnpm dlx envinfo --system --binaries --browsers --npmPackages "{svelte,@sveltejs/*,vite}"
Describe the bug
In runes mode
returns data which is not bindable to eg. input elements etc. afaik this worked before and its also working when using 'let mode'
Reproduction
Logs
No response
System Info
Severity
annoyance
Additional Information
No response