How to pass html events to an input element inside a component that is in jsx format?

HTML events like onInput are not passed by props.
Why?

on$Something will not be passed as props, this will be registered as events, and in component you need to do $emit('something') Router Component | Framework7 Documentation

Thank you very much!