0.4.0 • Published 9 months ago

vue-use-hotkeys v0.4.0

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

vue-use-hotkeys

Vue composition for using keyboard shortcuts in components. This is a hook version for hotkeys package.

Install

via pnpm, yarn or npm:

$ pnpm add vue-use-hotkeys
# or
$ yarn add vue-use-hotkeys
# or
$ npm i -S vue-use-hotkeys

Usage

import { defineComponent, ref } from 'vue'
import { useHotkeys } from 'vue-use-hotkeys'

export default defineComponent(() => {
  const count = ref(0)

  useHotKeys('ctrl + k', () => {
    count.value += 1
  })

  return () => (
    <p>
      Pressed <kbd>ctrl + k</kbd> {count.value} times.
    </p>
  )
})

Preview demo:

To-Do(s)

  • add support of @vue/composition-api;

License

MIT © Mitscherlich

0.4.0

9 months ago

0.3.5

1 year ago

0.3.4

1 year ago

0.3.3

2 years ago

0.3.2

2 years ago

0.3.1

2 years ago

0.3.0

2 years ago

0.2.0

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago