ホストにアニメーションを追加しました
@Component({
....,
animations: [
trigger('slideIn', [
...
])
],
host: {
'[@animation]': 'condition'
}
}
これはうまく機能しましたが、コンパイル時に、これは非推奨であり、@HostBinding を使用する必要があると言われました ...
@HostBinding('[@animation]') get slideIn() {
return condition;
}
エラーが発生します
Can't bind to '[@animation' since it isn't a known property of 'my-component-selector'.
しかし、モジュールにアニメーションを追加できません。どうすればよいですか?