anish2690/vue-draggable-next

Issues in Drag and Drop

Opened this issue · 1 comments

image
Getting this error, while dragging the elements.

	<draggable
		class="q-pa-sm container"
		:list="items"
		item-key="name"
		:style="grid"
		ghost-class="ghost"
		:move="handleMove"
		@end="handleDragEnd"
	>
		<div
			class="list-group-item"
			:class="{ 'not-move': element.static,cell:element.i}"
			v-for="element in items"
			:key="element.i"
		>
			<span :class="`rotate-${element.screenRotation}`">{{ element.i }}</span>
		</div>
	</drggable>	

@MuthuSelviC looks like a code error, can you share the full code