我的项目使用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"
.
谢谢!