知识要点

(v-model)  [(ngModel)]="xx"相当于  
[ngModel]="xx 
(ngModelChange)="xx=$event"
(v-if)  *ngIf
(v-hide)  [class.hidden]
[style.display]="isSpecial ? 'block' : 'none'"
(v-for="hero in heros")  *ngFor="let hero of heroes"

(v-for="(hreo,index)in heros")
{{i + 1}} - {{hero.name}}
:href   [href]
@click   (click)
知识要点_第1张图片
image.png

vue未曾发现

···
:p_hero="hero" props:[p_hero]
[p_hero]="hero" @Input() p_hero: Hero;
···

  v-html="title"
  [innerHTML]="title"
属性型指令Ng
结构型指令ng

你可能感兴趣的:(知识要点)