vue-mousetrap

1.0.5 • Public • Published

vue-mousetrap

A vue plugin to add mousetrap to the Vue object.

Installing

Install using NPM

npm install vue-mousetrap --save

Install using Yarn

yarn add vue-mousetrap

Usage

The loading of the plugin is different between Vue 2 and Vue 3 in the main.js file. Once loaded access mousetrap in components is the same for both versions.

Vue 2

import Vue from 'vue'
import VueMousetrapPlugin from 'vue-mousetrap/vue2'
Vue.use(VueMousetrapPlugin)

Vue 3

Usage with options API

import { createApp } from 'vue'
import App from './App.vue'
import VueMousetrapPlugin from 'vue-mousetrap'

const app = createApp(App)

app.use(VueMousetrapPlugin)

app.mount('#app')

Usage with composition API

app.use(VueMousetrapPlugin).provide('mousetrap', app.config.globalProperties.$mousetrap).mount('#app')

Vue 2 and Vue 3 Access in Components

Usage with options API

<script>
  export default {
    name: 'mousetrap-demo',
    mounted() {
      // single keys
      this.$mousetrap.bind('4', this.logIt);
      this.$mousetrap.bind("?", this.logIt);
      this.$mousetrap.bind('esc', this.logIt, 'keyup');

      // combinations
      this.$mousetrap.bind('command+shift+k', this.logIt);

      // map multiple combinations to the same callback
      this.$mousetrap.bind(['command+k', 'ctrl+k'], this.logIt);

      // gmail style sequences
      this.$mousetrap.bind('g i', this.logIt);
      this.$mousetrap.bind('* a', this.logIt);

      // konami code!
      this.$mousetrap.bind('up up down down left right left right b a enter', this.logIt);
    },
    methods: {
      logIt(e) {
        console.log(e);
        return false;
      }
    }
  };
</script>

Usage with composition API

setup() {
    const mousetrap = inject('mousetrap')

    onMounted(() => {
        mousetrap.bind(['command+k', 'ctrl+k'], () => {
            console.log("Yikes")
        });
    })

    return {};
},

Readme

Keywords

Package Sidebar

Install

npm i vue-mousetrap

Weekly Downloads

373

Version

1.0.5

License

MIT

Unpacked Size

5.01 kB

Total Files

7

Last publish

Collaborators

  • g33kio