刚刚更新到react-popper 2.3.0
和@popperjs/core: "2.11.6
特灵,以设置it's own doc上描述的样式,但写道:<Popper children={({style:{color:'red'}}) => <div>opened</div>} strategy="fixed" />
返回错误Property 'red' does not exist on type 'CSSProperties'
刚刚更新到react-popper 2.3.0
和@popperjs/core: "2.11.6
特灵,以设置it's own doc上描述的样式,但写道:<Popper children={({style:{color:'red'}}) => <div>opened</div>} strategy="fixed" />
返回错误Property 'red' does not exist on type 'CSSProperties'
1条答案
按热度按时间uubf1zoe1#
您可以使用字符串文字类型来指定属性值,如下所示:
这将告诉
TypeScript
“color”的值是字符串文字“red”,这是一个有效的CSS颜色值。