Angular: How to implement ng-include like functionality in Angular 5?
问题 Is there any functionality to render html file dynamically inside a components template based on the path? I have the path to local html file now I need to display the content of it inside a components template. In Anular 1.x we had ng-include, any similar functionality in Angular5? <div class="row blogdetail-container"> {{blogSelected.description}} // currently interpolates the path </div> variable blogSelected.description contains the path to html file and I want to replace its content here