angular绑定数据

Angular 中使用{{}}绑定业务逻辑里面定义的数据

<h1>
    Welcome to {{ title }}!   /*引入title*/
  </h1>
export class AppComponent { /*title 参数数据*/
  title = 'Angulardemo01';
}

 

posted on 2019-05-17 16:33  LoaderMan  阅读(292)  评论(0编辑  收藏  举报

导航