Engineering
Dynamic Component Loading – Angular
This post describes how to implement lazy or dynamic component loading with angular, based on an Angular 10 demo implementation. In Angular applications, it is sometimes necessary to load components dynamic/lazy and asynchronous at runtime. Just think of loading captcha, promotion, or advertisement components. Manual component loading with Angular is achieved very easily once you have seen an example implementation, and that’s what I provide. Assume an existing Angular application or at least a component Read more…