superforms-web icon indicating copy to clipboard operation
superforms-web copied to clipboard

Formsnap version 2, uses snippets

Open q1b opened this issue 11 months ago • 1 comments

from https://www.formsnap.dev/docs/v2-migration-guide

Before (v1)

<Control let:attrs>
	<input type="text" {...attrs} bind:value={$formData.name} />
</Control>

After (v2)

<Control>
	{#snippet children({ props })}
		<input type="text" {...props} bind:value={$formData.name} />
	{/snippet}
</Control>

q1b avatar Mar 07 '25 04:03 q1b

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
superforms-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 7, 2025 4:24am
superforms-web-legacy ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 7, 2025 4:24am
superforms-web-v1 ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 7, 2025 4:24am

vercel[bot] avatar Mar 07 '25 04:03 vercel[bot]