0
にある属性だから、例えば私は別のコンポーネントコンポーネントは、htmlタグ
<component-a class="valid" ></component-a>
によって追加されたいくつかのCSSクラスを持っている私のコンポーネントを持っているが、私はこれらのクラスを手に入れることができます得ることができますクラス宣言
import { Component } from '@angular/core';
@Component({
selector: 'component-a',
template: ''
})
export class componentA { }
あなたの最初のオプションでは、予約語をプロパティ名として使用しようとするのを避けるために、 '@Input( 'class')classAttribute:string;'を使う必要があると思います。 – Duncan