├── .babelrc ├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── index.html ├── package.json ├── preview.gif ├── rollup.config.js ├── vue-dragging.es5.js ├── vue-dragging.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015-rollup"] 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzuan1983/vue-dnd-touch/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzuan1983/vue-dnd-touch/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | test/ -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzuan1983/vue-dnd-touch/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzuan1983/vue-dnd-touch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzuan1983/vue-dnd-touch/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzuan1983/vue-dnd-touch/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzuan1983/vue-dnd-touch/HEAD/package.json -------------------------------------------------------------------------------- /preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzuan1983/vue-dnd-touch/HEAD/preview.gif -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzuan1983/vue-dnd-touch/HEAD/rollup.config.js -------------------------------------------------------------------------------- /vue-dragging.es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzuan1983/vue-dnd-touch/HEAD/vue-dragging.es5.js -------------------------------------------------------------------------------- /vue-dragging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzuan1983/vue-dnd-touch/HEAD/vue-dragging.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzuan1983/vue-dnd-touch/HEAD/yarn.lock --------------------------------------------------------------------------------