Skip to content

Instantly share code, notes, and snippets.

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 killerchip/9e41dfd6a20a404b397a5224db8763cc to your computer and use it in GitHub Desktop.
Save killerchip/9e41dfd6a20a404b397a5224db8763cc to your computer and use it in GitHub Desktop.
Angular cheatsheet: Directives / NgSwitch

NgSwitch

ngSwitchDefault is optional.

<div [ngSwitch] = "position">
  <div *ngSwitchCase = "1">You are 1st!</div>
  <div *ngSwitchCase = "2">You are 2nd!</div>
  <div *ngSwitchCase = "3">You are 3rd!</div>
  <div *ngSwitchDefault>You are not worth mentioning!</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment