===ngIf===
----
*https://angular.jp/api/common/NgIf
*https://qiita.com/KojiTakahara/items/b3fa4e33255e7abc292b
isToolbar = true;
:
</pre>
====テンプレートを切り替える====
*templateはng-templateで宣言できる
<pre>
<div *ngIf="flag; then trueContents; else elseContents>この部分は表示されない</div>
<ng-template #trueContentas>trueの場合表示される</ng-template>
<ng-template #elseContentas>falseの場合表示される</ng-template>
</pre>