angular show page before each screen if condition code example
Example 1: ngIf else
content_copy
Content to render when condition is true.
Content to render when condition is false.
Example 2: ngif
@Component({
selector: 'ng-if-else',
template: `
show = {{show}}
Text to show
Alternate text while primary text is hidden
`
})
export class NgIfElse {
show: boolean = true;
}