1. 程式人生 > >angular5 directive和component的區別

angular5 directive和component的區別

ural .cn clas rec ive 繼承 rect http ngs

指令分為三類,組件屬性指令結構性指令

  • 組件(Component directive):UI組件,繼承於Directive
  • 屬性指令(Attribute directive):改變組件的樣式
  • 結構指令(Structural directive):改變DOM布局

屬性指令例如 ngClass ngStyle

結構性指令 *ngIf *ngFor *ngSwitch

參考自http://mttcug.cnblogs.com/

angular5 directive和component的區別