I am currently in the process of upgrading my Vue 2 application to Vue 3. However, when I run the application, I encounter some deprecation errors.
Previously, I used numbers and "key" in my keyboard event modifiers. This approach is now deprecated in Vue 3, which is causing the errors. I am unsure of how to proceed with this change.
Your Previous Implementation
@keyup.ctrl.86="onUpdateEvent()"
The error stems from using numbers in the modifier. What steps can I take to resolve this issue?