-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Closed as not planned
Labels
Description
This:
<script>
let value;
</script>
<input type="text" bind:value={value}>outputs this as of v3.12.1:
function input_input_handler() {
value = this.value;
$$invalidate('value', value);
}This is caused by these two lines of code here.