[Angular Directive] Structure directive and

The structure directive is just a sugar syntax of <template>.spa

 

Such as:code

<div *ngIf="name.length > 2">
    This is something...
</div>

 

Equal to:blog

<template [ngIf]="name.length > 2">
    <div> There are somoething</div>
</template>
相關文章
相關標籤/搜索