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.
- [Vuejs]-Wrong linkin when import index.ts file without specifying the file extension, when another index.vue file is in the same folder, using vue 3 and vite?
- [Vuejs]-What is flush:post in vue.js watchers?
Source:stackexchange.com