Skip to content
This repository has been archived by the owner on Dec 26, 2018. It is now read-only.

v2.0.0-beta.2

Pre-release
Pre-release
Compare
Choose a tag to compare
@LinusBorg LinusBorg released this 14 Jan 13:16
· 3 commits to master since this release

Bugfixes:

none.

New Features

  • Now SSR-compatible See README
  • New Prop: enabled
  <!-- enable all recognizers -->
<v-touch v-bind:enabled="true" v-on:tap="callback" />

  <!-- disable all recognizers -->
<v-touch v-bind:enabled="false" v-on:tap="callback" />

  <!-- pass an object to enable and disable recognizers individually -->
<v-touch v-bind:enabled="{ pinch: true, rotate: false }" v-on:tap="callback" />