Skip to main content

Posts

Showing posts with the label Create component

How To Create component in Angular 4 and 5 using CLI?

What Is Angular Component? The Angular Components are classes that interact with the html file of the component, which gets displayed on your browsers. Stayed Informed – Angular 5 and Angular 4 Documents The component structure looks like - 1.       src/app/employee/employee.component.html 2.       src/app/employee/employee.component.spec.ts 3.       src/app/employee/employee.component.ts 4.       src/app/employee/employee.component.css The CLI common Is - ng g component employee Here employee is a component name.  The above files and folder are created by default when we execute angular-cli command - ng g component employee. Steps - D:\>cd Angular D:\Angular>cd my-app D:\Angular\my-app>ng g component employee   create src/app/employee/employee.component.html (27 bytes)   create src/app/employee/employee.component.spec.ts (642 bytes)   create src/app...