我从 ngrx 商店有这样的观察结果
public toolbarConfig$: Observable<ToolbarKendoState> = this.store$.select(GetProductToolbarConfig);
那么我想在这里订阅
<lib-product-config-toolbar [toolbarCustomConfig]="toolbarConfig$ | async"></lib-product-config-toolbar>
最后我通常会在适当的组件中像这样使用它
@Input() toolbarCustomConfig: ToolbarKendoState | null = null;
但是我想使用输入信号而不是 @Input 装饰器,并且像这样使用它不起作用(我没有输入的值(当然使用旧方法它可以工作))
toolbarCustomConfig = input()
我错过了什么?
如果没有关于失败原因的正确详细信息,它会给您一个适合您的用例的答案,但我能够生成一个看起来工作正常的最小示例,也许这可以帮助您解决您的问题?
https://stackblitz.com/edit/stackblitz-starters-caivbu?file=src%2Fmain.ts