Search Results

Blog Archive

Angular: ngContent

If you want build a card design and use that card design as wrapper in multiple places you can use it with ngContent method. Example:...
Continue reading

Angular: @Input() vs input()

@Input() Decorator The @Input decorator allows parent components to pass data to their children. Example of @Input In this example child component binds userName with...
Continue reading

Angular: Property Binding

In Angular, Property Binding is a one-way binding mechanism that binds the properties of DOM elements (like <input>, <img>, <div>, etc ) to variable or...
Continue reading