Yogesh Chauhan's Blog

What are components in Angular?

in Angular on May 11, 2020

💡 Components define areas of responsibility in the user interface, or UI, that let you reuse sets of UI functionality. 

A component consists of three things:

1. A component class that handles data and functionality.

In this post, Five Common Features Of Angular's Template Syntax (With Examples), the product data and the share() method in the component class handle data and functionality, respectively.

2. An HTML template that determines the UI.

In this post, Five Common Features Of Angular's Template Syntax (With Examples), the product list's HTML template displays the name, description, and a "Share" button for each product.

3. Component-specific styles that define the look and feel.

Though product list does not define any styles in this post, Five Common Features Of Angular's Template Syntax (With Examples), this is where component CSS resides.

An Angular application comprises a tree of components, in which each Angular component has a specific purpose and responsibility.

You can add more components by just clicking on "New Component" in the browser window when you run your Angular application. 


Most Read

#1 Solution to the error “Visual Studio Code can’t be opened because Apple cannot check it for malicious software” #2 How to add Read More Read Less Button using JavaScript? #3 How to check if radio button is checked or not using JavaScript? #4 Solution to “TypeError: ‘x’ is not iterable” in Angular 9 #5 PHP Login System using PDO Part 1: Create User Registration Page #6 How to uninstall Cocoapods from the Mac OS?

Recently Posted

#Apr 8 JSON.stringify() in JavaScript #Apr 7 Middleware in NextJS #Jan 17 4 advanced ways to search Colleague #Jan 16 Colleague UI Basics: The Search Area #Jan 16 Colleague UI Basics: The Context Area #Jan 16 Colleague UI Basics: Accessing the user interface
You might also like these
Two ways we can use colon(:) in Envision BasicEnvision BasicKubernetes vs. Docker? It’s a misleading phraseMiscellaneousWordPress: How to setup and get values from an ACF options page?WordPressCasting in PostgreSQLPostgresHow to create a Progress Bar using JavaScript?JavaScriptHow to catch .keypress() on body using jQuery?jQueryHow to Install Xcode Command Line Tools on MacOS?MiscellaneousIs there a difference between SCSS and Sass?SCSSEssential SQL Commands We Need to KnowSQL/MySQLKeyValuePipe in Angular 9AngularCrypto.getRandomValues() method in JavaScriptJavaScriptHow to apply style to the first-child using jQuery?jQuery