here's a way to use in Vue 3 in the mean time if anyone needs this: ``` app.directive('hotkey', { beforeMount: VueHotkey.directive.bind, updated: VueHotkey.directive.componentUpdated, unmounted: VueHotkey.directive.unbind, }); ```