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.
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
Style
This project was built with yeoman and generator-vue-component ❤️