As the title of the question, this context is not available in the functional component. So if I have to emit an event, how can I do that?
this
For example in be
If you want to pass event listener conditionally you can do it inside functional component template like this:
v-on="listeners.change ? { change: listeners.change } : null"
The issue of conditionally attaching listeners is discussed here