My Vuejs form has an input field for credit card numbers with the following attribute:
@change="updateNumber($event)"
While in Chrome, pasting a credit card number or autofilling from saved cards triggers a "change" event, it does not work the same way in Safari. The change event is not emitted. I am looking for guidance on which event to listen for and how to configure a custom event listener in my Vuejs component. Any help would be appreciated!