私のプロジェクトでは、Angular (v9) とClarity Design System (v3) を使用しています。
Ivy とテンプレートの厳密な型チェックを使用して、clrForm 要素の clrLayout をどのように処理しますか?
<form clrForm clrLayout="horizontal" clrLabelSize="4">
[...]
</form>
このフォームでは、次のエラー メッセージが表示されます。
Type 'string' is not assignable to type 'number'.
属性のclrLabelSize="4"
。Type '"horizontal"' is not assignable to type 'Layouts'.
のためにclrLayout="horizontal"
。
ありがとうございました!