Skip to content

Instantly share code, notes, and snippets.

View vicly's full-sized avatar

Vic vicly

  • Auckland, New Zealand
View GitHub Profile
@vicly
vicly / binding.md
Created April 30, 2020 00:11
[Angular数据绑定:方括号,圆括号,花括号] #Angular #Frontend

[]: 绑定属性

<div class="red">red</div>    // class为red
<div [class]="red">red</div>  // class为blue; 从变量red读取
 
//组件中
red: string = "blue";