[Vuejs]-Can no longer scroll with keys unless an element is selected

0👍

Not really knowing Shopify, I’d suggest using document.activeElement to log which element has the focus after the page loads.

console.log(document.activeElement);

Starting from there, you can see whether it has any event handlers that stop propagation or if it exists outside the <body>, which presumably has the keyboard handler(s). Hope this helps.

Leave a comment