antd的使用ts写报错
const dateTypes = 'date' | 'week' | 'month';
const [dateType, setDateType] = useState<dateTypes>('date');
// 这个地方一直报错,如果直接写'date'是ok的
<DatePicker picker={dateType} />
报错信息,不知道是不是antd定义有问题
antd 版本"antd": "^4.6.1",
Type '{ picker: dateTypes; }' is not assignable to type '(IntrinsicAttributes & IntrinsicClassAttributes<Component<PickerProps<Moment>, any, any>> & Readonly<...> & Readonly<...>) | (IntrinsicAttributes & ... 2 more ... & Readonly<...>) | (IntrinsicAttributes & ... 2 more ... & Readonly<...>)'.
Type '{ picker: dateTypes; }' is not assignable to type 'Readonly<InjectDefaultProps<PickerTimeProps<Moment>>>'.
Types of property 'picker' are incompatible.
Type 'dateTypes' is not assignable to type '"time"'.
Type '"date"' is not assignable to type '"time"'. TS2322
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
已解决,