I have some 100+ input fields which I am getting it stored in an AlpineJS global variable as Alpine.store('global_data', { ... })
Now I am saving this to data to localStorage on the click of a Save locally button.
Is there any way to do @input.debounce="saveLocally()"
on all inputs without manually setting this to all of my 100+ inputs ?