我是一个使用React的新蜜蜂,我通常会使用自定义css文件和库来进行Web应用程序开发。我已经能够使用require
和css-loader
npm install
导入我的css文件。我想知道如果我可以使用SystemJS
从waves.js
导入bower_components
等库,并像在JQuery / Javascript Waves.attach(".btn:not(.btn-icon):not(.btn-float)"), Waves.attach(".btn-icon, .btn-float", ["waves-circle", "waves-float"]), Waves.init()
如果有可能我该怎么做呢?如果不可以,我怎么能导入wave,因为我的项目。
答案 0 :(得分:0)
我在没有waves.js
的情况下导入了我的system js
文件并在attach
函数中调用了componentDidMount
函数,它就像魅力一样
import Waves from "../../libs/bower_components/Waves/dist/waves.min.js";
componentDidMount() {
Waves.attach(".btn:not(.btn-icon):not(.btn-float)");
Waves.attach(".btn-icon, .btn-float", ["waves-circle", "waves-float"]);
Waves.init();
}