@jcharante/vue-long-press-directive

1.1.2 • Public • Published

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.

Package Sidebar

Install

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

Weekly Downloads

3

Version

1.1.2

License

MIT

Unpacked Size

8.47 kB

Total Files

14

Last publish

Collaborators

  • jcharante