Angular2 for TypeScriptのお勉強-sample(6)【classの置き換え,override】
classを修正するのはよくするところなのでそこらへん。
チュートリアルのここ見ながら確認
今回やっていること
・普通にclassとして要素に記述する
・それをリセットして反映させる[class]
・メタデータにstylesとして子directiveのstyle制御
・子directiveをtemplateUrlとしてhtmlファイルで管理する
app.childComponent.html
<nav class="navbar-fixed"><span class="">Contacts</span></nav>
app.component.ts
@Component({
selector: 'contacts-header',
templateUrl: `./app/app.childComponent.html`,
styles: ['.navbar-fixed { position:fixed; }']
})
export class HeaderComponent {
colorBlue: string = "colorBlue";
constrctor (){
}
}
なんてことないですが、ちょっとずつ確認してこーと思います
でわまた〜〜