vue脚手架中使用 zepto touch
2018-12-03 本文已影响0人
书简_yu
首先在脚手架中安装好基本的,参考文章:vue里面下载配置使用zepto
npm i zepto.touch -D
main.js中
import touch from 'zepto.touch';
$.fn.touch.defaults = {
fingers: 1,
threshold: 75,
longTapThreshold: 500,
doubleTapThreshold: 200,
excludedElements: 'label, button, input, select, textarea, .noTouch',
pageScroll: true,
swipeMove: null
};
npm i zepto -D
里面没有touch模块,所以去 npm 上搜 zepto touch, 搜到之后就是阅读,学习使用了