Loading...
Loading...
Svelte component patterns. Use for web components, component libraries (Bits UI, Ark UI, Melt UI), form patterns, or third-party integration.
npx skill4agent add spences10/svelte-skills-kit svelte-componentsform<form id="my-form" action="/submit"><!-- outside table --></form>
<table>
<tr>
<td><input form="my-form" name="email" /></td>
<td><button form="my-form">Submit</button></td>
</tr>
</table>// svelte.config.js
export default {
compilerOptions: {
customElement: true,
},
};<!-- MyButton.svelte -->
<svelte:options customElement="my-button" />
<button><slot /></button>defaultValue