2019-09-12 18:20:54 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
|
|
|
import {Component} from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
template: `
|
2019-10-11 16:56:33 -04:00
|
|
|
<div ~{start-implicit}*ngIf="show; let l=unknown"~{end-implicit}>
|
2019-09-12 18:20:54 -04:00
|
|
|
Showing now!
|
|
|
|
</div>`,
|
|
|
|
})
|
|
|
|
export class ShowIf {
|
|
|
|
show = false;
|
|
|
|
}
|