Angular 中使用{{}}绑定业务逻辑里面定义的数据
<h1> Welcome to {{ title }}! /*引入title*/ </h1>
export class AppComponent { /*title 参数数据*/ title = 'Angulardemo01'; }
Angular 中使用{{}}绑定业务逻辑里面定义的数据
<h1> Welcome to {{ title }}! /*引入title*/ </h1>
export class AppComponent { /*title 参数数据*/ title = 'Angulardemo01'; }