import type { Attachment } from 'svelte/attachments';
let open =$state(false);
const myAttachment: Attachment = (node) => {
node.focus();
};
{#if open}
{@attach myAttachment}
/>
{/if}
open=!open}>{open}
Please Login to reply.
No replies yet.