Skip to content

Instantly share code, notes, and snippets.

@abisheksurya91
Created December 14, 2021 12:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abisheksurya91/b9611c60dbc926c95cca7123455296e3 to your computer and use it in GitHub Desktop.
Save abisheksurya91/b9611c60dbc926c95cca7123455296e3 to your computer and use it in GitHub Desktop.
Components in Angular v13
@Directive({ … })
export class MyDirective {
constructor(private viewContainerRef: ViewContainerRef) {}
createMyComponent() {
this.viewContainerRef.createComponent(MyComponent);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment