svelte-forms
svelte-forms copied to clipboard
How to handle array data type?
{
fname: "john",
lname: "doe"
interest_id: [1,2,3,4,5,6]
}
field can only be used for primitive data (fname
and lname
) but is there anything to handle array data (interest_id
)
Is this not the general use case form inputs, they are strings only afaik