“IntrinsicAttributes & DraggableProps”类型上不存在属性“type”,NEXTJS/React

问题描述 投票:0回答:1
javascript reactjs github next.js react-props
1个回答
0
投票

设法解决问题: 而不是:

<Droppable droppableId={section.id} type="task">

我做到了:

<Droppable droppableId={`task|${section.id}`}>

然后,我可以使用以下类型:

const type = result.droppableId.split('|')[0]
© www.soinside.com 2019 - 2024. All rights reserved.