Materialise.toast角2

Dim*_*ple 4 materialize angular

我正在研究角度2.我使用了materialize-css,它适用于类但问题来了materialize toast.我使用gulpfile.js配置了materialize我需要在gulpfile中添加任何其他js文件吗?

<a class="btn" (click)="Materialize.toast('I am a toast', 4000)">Toast!</a>

使用此控制台显示错误
Materialize is not defined

小智 7

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

import { toast } from 'angular2-materialize';

ngOnInit() {
   toast("I am the best toast there is!", 4000);
}
Run Code Online (Sandbox Code Playgroud)