Currently, I am facing an issue with a view that contains an input field. When a character is entered, the input field loses focus, requiring an additional click to resume typing. Does anybody have any insight into what might be causing this problem?
Here is my model:
'model': [
...,
'filter': [
...,
'something': [
'string'
]
]
]
Here is my code:
<div v-for="(something, index) in model.filter.something" v-bind:key="something">
<input type="text" v-model.trim="model.filter.something[index]"/>
</div>