Skip to content

onKeyPressed

描述

按键被按下事件钩子。

示例

ts
import { onKeyPressed } from '@base-web-kits/base-tools-vue';

onKeyPressed('Enter', () => {
  console.log('Enter key pressed');
});
```来源

[VueUse](https://vueuse.org/functions/onKeyPressed/)