noahsalvi / svelte-use-form

The most compact reactive form controller (including Validation) that you'll ever see.
MIT License
252 stars 14 forks source link

Does not work for inputs where the value is binded to a variable. #65

Closed Blankeos closed 1 year ago

Blankeos commented 1 year ago
<script>
let name = "Carl";
</script>

<input name="name" bind:value={name} />

Changing the value of name via javascript instead of typing does not update the store correctly.

noahsalvi commented 1 year ago

I believe that this is a duplicate of #60.

However, I'm open to suggestions if you see a possible solution to it.