Downgrading Components
Upgrading components sounds like it should happen before downgrading, but the point of upgrading is to make an AngularJS component work with Angular. For an Angular component to use an AngularJS component in an ng-upgrade application there must first be a downgraded Angular component. Consequently it's important to first learn how to downgrade Angular components to work with AngularJS
All downgraded components operate like AngularJS 'E'
element directives.
Here is an example of a very simple Angular component:
Registering the downgraded component with AngularJS:
Last updated