1.1.2 • Published 4 years ago

@jcharante/vue-long-press-directive v1.1.2

Weekly downloads
15
License
MIT
Repository
github
Last release
4 years ago

vue-long-press-directive

Long press directive plugin for Vue.js. See the live demo.

npm install @jcharante/vue-long-press-directive

Usage

Register the plugin with Vue. It's possible to specify the press duration in the options object.

var Vue = require('vue')
var longpress = require('vue-long-press-directive')

Vue.use(longpress, { duration: 1000 })

The directive can now be used in a template.

<button v-long-press='onlongpress'>Press and hold</button>

If you want to pass arguments, you're going to need to wrap the function so it doesn't get called immediately.

<button v-long-press="(() => { onlongpress(1) })">Button 1</button>
<button v-long-press="(() => { onlongpress(2) })">Button 2</button>

DO NOT DO

<button v-long-press="onlongpress(1)">Button 1</button>

because your function will get called a bunch of times without being long pressed.