GitXplorerGitXplorer
v

vue-touch

public
2721 stars
391 forks
52 issues

Commits

List of commits on branch master.
Verified
6ce4e12a3fa3175865d6b1b674fa04b263514e83

Update README.md

LLinusBorg committed 6 years ago
Unverified
fa863d28cc35f2c82f5e28699768f1781aabca80

add infor about next branch

LLinusBorg committed 8 years ago
Unverified
a1c2eae08115c546eb732a0facb1ebb49849a89f

Update README.md

yyyx990803 committed 8 years ago
Unverified
7295d5d4bc8d3d835a89e38da892b2c96992363d

Add License (#39)

kkazupon committed 8 years ago
Unverified
d43f8af9fe14632610955eea08ff9b6c41962590

1.1.0

yyyx990803 committed 8 years ago
Unverified
3f8b230016c55952b4e3a5fd89d50d78b3a29943

add minified build

yyyx990803 committed 8 years ago

README

The README file for this repository.

This plugin is deprecated and not maintained anymore.

vue-touch

Touch events plugin for Vue.js. This plugin does not support Vue 2.0 yet.

This is a directive wrapper for Hammer.js 2.0.

Install

This branch is only compatible with Vue 1.0. For the Vue 2.0 compatible rewrite, see the next branch

CommonJS

  • Available through npm as vue-touch.

    var VueTouch = require('vue-touch')
    Vue.use(VueTouch)

Direct include

  • You can also directly include it with a <script> tag when you have Vue and Hammer.js already included globally. It will automatically install itself, and will add a global VueTouch.

Usage

Using the v-touch directive

<a v-touch:tap="onTap">Tap me!</a>

<div v-touch:swipeleft="onSwipeLeft">Swipe me!</div>

Configuring Recognizer Options

There are two ways to customize recognizer options such as direction and threshold. The first one is setting global options:

// change the threshold for all swipe recognizers
VueTouch.config.swipe = {
  threshold: 200
}

Or, you can use the v-touch-options directive to configure the behavior on a specific element:

<!-- detect only horizontal pans with a threshold of 100 -->
<a
  v-touch:pan="onPan"
  v-touch-options:pan="{ direction: 'horizontal', threshold: 100 }">
</a>

Registering Custom Events

// example registering a custom doubletap event.
// the `type` indicates the base recognizer to use from Hammer
// all other options are Hammer recognizer options.
VueTouch.registerCustomEvent('doubletap', {
  type: 'tap',
  taps: 2
})
<a v-touch:doubletap="onDoubleTap"></a>

See Hammer.js documentation for all available events.

See /example for a multi-event demo. To build it, run npm install && npm run build.

License

MIT