Skip to content

Commit

Permalink
remove lazy
Browse files Browse the repository at this point in the history
  • Loading branch information
crsct committed Sep 7, 2023
1 parent 546fb1c commit 06396e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/QueryFilter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
<input
class="form-control"
type="text"
v-model.lazy.number="min"
v-model.number="min"
@change="$emit('update:min', min)"
/>
<span class="input-group-text">Min</span>
<input
class="form-control"
type="text"
v-model.lazy.number="max"
v-model.number="max"
@change="$emit('update:max', max)"
/>
<span class="input-group-text">Max</span>
Expand Down

0 comments on commit 06396e7

Please sign in to comment.