History of Components
Explore the history of Angular components, starting from AngularJS which lacked true components, to the introduction of components in AngularJS 1.5, and the modular component-based architecture adopted in Angular 2 and beyond. Understand how this shift improves UI control and application design.
We'll cover the following...
We'll cover the following...
No components in AngularJS
In the AngularJS years, there was no concept of a component. All we had was HTML templates and controllers, which were attached to the HTML templates we created. There were directives, which, although not exactly like components, they did allow us to create reusable elements that we ...