webpack 引入 fastclick报错?

发布于 2022-09-07 21:50:03 字数 211 浏览 43 评论 0

问题:根据文档引入fastclick报错。

 var attachFastClick = require('fastclick');
     attachFastClick(document.body);

报错信息

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

风渺 2022-09-14 21:50:03
import FastClick from 'fastclick'
!window.detachFastclick && FastClick.attach(document.body)
烂柯人 2022-09-14 21:50:03

https://github.com/ftlabs/fas...

If you're using Browserify or another CommonJS-style module system, the FastClick.attach function will be returned when you call require('fastclick'). As a result, the easiest way to use FastClick with these loaders is as follows:

var attachFastClick = require('fastclick');
attachFastClick(document.body);

聽兲甴掵 2022-09-14 21:50:03

是不是你这个trackingClick事件没有在methods里声明啊

避讳 2022-09-14 21:50:03

如果在打包工具中,应该CMD模块模式写法:

var attachFastClick = require('fastclick');
attachFastClick(document.body);

如果事script引用 ,使用AMD 模式的写法:

var FastClick = require('fastclick');
FastClick.attach(document.body, options);

如果有帮助,请采纳

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文