An Angular 1.x directive has link parameter that can compile HTML template 
and bind with element and scope.

Code example:
function link(scope, element, attrs) {
 element.html('<div>Hello {{name}}</div>');
 $compile(element.contents())(scope);
}


And that in angular 2?


 

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to