嵌套 dragable 遇到个问题,从左往右拖好好的,但是把嵌套的一层,上下一拖,里面的内容就没了。
经鉴定,问题的根源在于 v-for 的 key
这种嵌套的,key 最好写成 item.key,虽然没有 key 这个值,我也不知道它哪里来的,但是设置它就对了。
<div v-for="item in itemInfo.group" :key="item.key">
<component optType="edit" :is="setComponent(item.type)" :info="item" />
</div>
然后就是里面的内容拖不动的问题,因为是表单,设置了 pointer-events:none
,所以外面要套一层 div,不然它都不知道要拖谁了。
网友评论