Lazy loading in Angular allows you to load feature modules on-demand using the ________ property in the route configuration.

  • asyncLoad
  • lazyLoad
  • loadChildren
  • loadModule
The blank should be filled with "loadChildren." In Angular, lazy loading is achieved by using the loadChildren property in the route configuration. This property specifies the path to the module that should be loaded lazily when the associated route is activated, improving application performance.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *