We have simplified the ViewContainerRef.createComponent API! 👩🏿💻 #ngUpdate ‣ Create components dynamically ‣ No need to resolve and pass ComponentFactory, use Component class as an argument instead
@angular Awww this means the death of the most verbose API in angular history, componentFactoryResolver.resolveComponentFactory()
@angular Looks like image alt text is broken, here is the code from the image: @Directive({ ... }) export class MyDirective { constructor(private vcRef: ViewContainerRef) {} createComponent() { this.vcRef.createComponent(MyComponent); } }"
@angular Can you use inputs and outputs of the created component, or is this basically syntactic sugar for what we could already do?
@angular Nothing about dynamically create svg-template component ? See issue : github.com/angular/angula…
@angular I think i need to back to Angular world Backend is boring
@angular do we create with a module to use routing, is that possible?