Skip to content

Commit

Permalink
fix: The v-model working on Mobile Keyboard workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
gammaSpeck committed Dec 19, 2022
1 parent 0a17ca1 commit cbdcf9a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/ConverterForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
>
<n-select
v-model:value="formValue.srcCountry"
@input="$event.target.composing = false"
:options="srcOptions"
filterable
/>
Expand All @@ -34,6 +35,7 @@
>
<n-select
v-model:value="formValue.targetCountry"
@input="$event.target.composing = false"
:options="targetOptions"
filterable
/>
Expand Down

0 comments on commit cbdcf9a

Please sign in to comment.