JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 110
  • Score
    100M100P100Q67656F
  • License MIT

:running: Vue.js directive to add a document event listener on escape keyup.

Package Exports

  • vue-esc

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vue-esc) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

vue-esc

🏃 Vue.js directive to add a document event listener on escape keyup.

Codeship Status for ianaya89/vue-esc Coverage Status Codacy Badge

Support

  • Vue.js 2 => vue-esc@>=2.0.0 [master]
  • Vue.js 1 => vue-esc@1.0.0

Install

$ npm i -S vue-esc
$ yarn add vue-esc

Use

// main.js

import Vue from 'vue';
import VueEsc from 'vue-esc';

Vue.use(VueEsc);
<script>
  // Component.vue

  export default {
    name: 'Component',

    methods: {
      escape(event) {
        console.log('Esc key pressed.', `Event: ${event}`);
      }
    }
  };
</script>

<template>
  <div v-esc="escape"></div>
</template>

Development

# install dependencies
$ npm install

# dev mode
$ npm run dev

# test
$ npm run test

# build
$ npm run build

License

MIT License

Style

js-standard-style


This project was built with yeoman and generator-vue-component ❤️