我正在尝试使用Angular-gauge:https://github.com/mattlewis92/angular-gauge/tree/ba9783f1531251bd8727899cf440c5889ff2b32e
使用我的离子2项目。
但这不起作用。
我在app.module中添加了导入。
imports: [
IonicModule.forRoot(MyApp),
GaugeModule
然后我在html中添加一个页面:
<mwl-gauge [max]="100" [dialStartAngle]="-90" [dialEndAngle]="-90.001" [value]="50" [animated]="true" [animationDuration]="1"></mwl-gauge>
然后我得到以下错误:
TypeError: Cannot read property 'call' of undefined at updateGauge
你知道我做错了吗?