Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Angular 2 次に覚えたいフィーチャー

Angular 2 次に覚えたいフィーチャー

2016/4、Angular 2ハンズオン勉強会にて使用した資料です。

OKUNOKENTARO

April 10, 2016
Tweet

More Decks by OKUNOKENTARO

Other Decks in Programming

Transcript

  1. styles • @Component()のstylesプロパティに
 文字列の配列を与えると、そのコンポーネントにのみ
 適用できるスタイルシートを記述できる @Component({ selector: 'hero-app', template: `

    <h1>Tour of Heroes</h1> <hero-app-main [hero]=hero></hero-app-main>`, styles: ['h1 { font-weight: normal; }'], directives: [HeroAppMainComponent] }) https://angular.io/docs/ts/latest/guide/component-styles.html
  2. styleUrls • @Component()のstylesの外部ファイル参照版
 styleUrlsというのもある
 @Component({ selector: 'hero-details', template: ` <h2>{{hero.name}}</h2>

    <hero-team [hero]=hero></hero-team> <ng-content></ng-content> `, styleUrls: ['app/hero-details.component.css'], directives: [HeroTeamComponent] })
  3. 読んでおくといいページ • Angular 1経験者には、2との違いが一覧表に
 なっているANGULAR 1 TO 2 QUICK REFERENCEを


    オススメ
 https://angular.io/docs/ts/latest/cookbook/a1-a2-quick-reference.html • Angular 2のテンプレート構文をド忘れしたときは
 ANGULAR CHEAT SHEETをオススメ
 https://angular.io/docs/ts/latest/cheatsheet.html