├── .gitignore ├── README.md ├── examples └── demo.html ├── package.json ├── src └── vue.js └── vue-tap.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijhfly/vue-tap/HEAD/README.md -------------------------------------------------------------------------------- /examples/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijhfly/vue-tap/HEAD/examples/demo.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijhfly/vue-tap/HEAD/package.json -------------------------------------------------------------------------------- /src/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijhfly/vue-tap/HEAD/src/vue.js -------------------------------------------------------------------------------- /vue-tap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weijhfly/vue-tap/HEAD/vue-tap.js --------------------------------------------------------------------------------