My Blog

My WordPress Blog

My Blog

My WordPress Blog

Learn Angular

Data Binding

Data Binding is the process of connecting a target (such as a DOM element, property, or event) in a template to a model (data or behavior) in the component. This process lets the template to dynamically reflect changes in the component’s state or execute actions based on user interactions, using template expressions or template statements. In Angular, data binding is […]

Elements

What is an Angular Element? Angular elements are reusable components that have been transformed into custom elements (also called Web Components). Angular provides a simple and effective method to create Web components. Web components are custom HTML elements available in native HTML specifications to extend the features/tags of the HTML document. It can be created […]

Content projection

What is Content Projection in Angular? Content projection is a technique available in the Angular component to include external content (from consumer of the component) along with layout and styles in the specific area of the component template. Different Implementation of Content Projection The different ways in which we can implement content projection are: Single-Slot […]

Scroll to top