₍ vᴗs ₎ 6 days ago <script lang="ts"> import type { Attachment } from 'svelte/attachments'; let open =$state(false); const myAttachment: Attachment = (node) => { node.focus(); }; </script> {#if open} <input {@attach myAttachment} /> {/if} <button onclick={()=>open=!open}>{open}</button>