@input event do not work
See original GitHub issue- Vue Version: ^3.2.13
- Vue Select Version: 4.0.0-beta.
Describe the bug input event does not fire after option is selected
<v-select
v-model="device.configuration.deviceConfig.actionConfigSource"
:options="fileList"
:reduce="(option) => option.value"
@input="onFileChange"
/>
Issue Analytics
- State:
- Created a year ago
- Comments:6 (1 by maintainers)
Top Results From Across the Web
Input event not working if value is changed with jQuery val() or ...
Simple solution: Trigger input after you call val() : $input.trigger("input");. var $input = $("#myinput"); $input.on('input', function() ...
Read more >HTMLElement: input event - Web APIs | MDN
The input event fires when the value of an , , or element has been changed.
Read more >Using InputEvent - Godot Docs
An InputEvent may or may not represent a pre-defined action. Actions are useful because they abstract the input device when programming the game...
Read more >Events: change, input, cut, copy, paste
Let's cover various events that accompany data updates. Event: change. The change event triggers when the element has finished changing.
Read more >.focus() | jQuery API Documentation
Therefore, scripts that rely on event delegation with the focus event will not work consistently across browsers. As of version 1.4.2, however, jQuery...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
You can try @option:selected=“onFileChange” fuction onFileChange(val) {}
read here #1597