fastclick.js的安装(解决移动端click事件有300ms延迟的问题)

一、终端中

npm install fastclick --save

二、main.js中

import FastClick from 'fastclick'
FastClick.attach(document.body);

猜你喜欢

转载自blog.csdn.net/qq_43540219/article/details/107734960