var el = document.getElementById("items");
var sortable = new Sortable(el,{
sort: true,
animation: 300,
});
<grid :cols="2" id="items">
<grid-item v-for="(item,index) in yxData" :key="index">
<div slot="label">
{{item.data}}
</div>
<div slot="label">
{{item.label}}
</div>
</grid-item>
</grid>
you can drag and drop on the chrome simulator, but you can"t drag and drop on the Android browser, and the long press appears to select the copy menu, ask the solution.