Angular - Build a Reusable Reactive Input Component

preview_player
Показать описание
In this Angular Tutorial you will learn how to build a #reusable #reactive input component that you can use anywhere in your Angular application.

If you like this content, feel free to like and subscribe to the channel.

Checkout my GitHub for cool projects.
Рекомендации по теме
Комментарии
Автор

Nice video! You just saved me, I just couldn't create a custom input component without getting an error before this video, thankss

fernandomonteiro
Автор

you need use providers: [{
provide: NG_VALUE_ACCESSOR,
useExisting: forwardRef(() => ImplicitInputComponent),
multi: true
}],

test-user-