Materialise.toast角2

前端之家收集整理的这篇文章主要介绍了Materialise.toast角2前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在研究角度2.我已经使用了materialize-css,它适用于类但是问题来自物化吐司.我使用gulpfile.js配置了materialize我需要在gulpfile中添加任何其他js文件吗?

< a class =“btn”(click)=“Materialise.toast('我是吐司',4000)”> Toast!< / a>

使用此控制台显示错误
未定义Materialise

解决方法

这适合我.希望我知道为什么 – 我无法在任何地方找到这个记录.

import { toast } from 'angular2-materialize';

ngOnInit() {
   toast("I am the best toast there is!",4000);
}

猜你在找的Angularjs相关文章