When developing an Angular application, I commonly employ resolves to fetch necessary data for a controller handling a template for a specific route.
Currently, I am facing a new scenario in which there are HTML fragments embedded within a route. How can I establish dependencies for each individual fragment akin to what I do for the entire route?
My goal is to make these fragments function as miniature ng-view components.