我正在使用webpacker启动一个新的Rails 5.2应用程序。
这是我的app.js脚本:
import 'smooth-scroll/dist/js/smooth-scroll'
document.addEventListener("DOMContentLoaded", function (event) {
document.addEventListener("touchstart", function () {}, true);
var scroll = new SmoothScroll('[data-scroll]');
在运行应用程序时,我在js控制台中遇到此异常
VM7061 application-91b17ff1e46fb65b9f2c.js:24847 Uncaught ReferenceError: SmoothScroll is not defined
at HTMLDocument.<anonymous>
我无法弄清楚如何在脚本之前加载SmoothScroll lib
提前谢谢