嵌套 dragable 遇到個問題,從左往右拖好好的,但是把嵌套的一層,上下一拖,里面的內(nèi)容就沒了。
經(jīng)鑒定,問題的根源在于 v-for 的 key
這種嵌套的,key 最好寫成 item.key,雖然沒有 key 這個值,我也不知道它哪里來的,但是設(shè)置它就對了。
<div v-for="item in itemInfo.group" :key="item.key">
<component optType="edit" :is="setComponent(item.type)" :info="item" />
</div>
然后就是里面的內(nèi)容拖不動的問題,因為是表單,設(shè)置了 pointer-events:none,所以外面要套一層 div,不然它都不知道要拖誰了。