How to use components events with jsx ? I use component with emits, and if i use this component in jsx then i can't add listener ```js // ModalMini.vue ... emits: ['change', 'leave'], setup(props, ctx){ const { emit, slots, } = ctx emit('change', 123) ... } ... ``` ```js // page.vue ... <ModalMini class="ModalAnalitycs" onChange={changeShow} > ... ``` onChange on ModalMini not work TS says ``` Property 'onChange' does not exist on type 'IntrinsicAttributes & Partial<{ ... ```