Vue移动端实现元素拖拽移动

Vue移动端实现元素拖拽移动

<template>
    <div ref="dragBox" 
         @touchstart="touchstartHandle('dragBox',$event)"   
         @touchmove="touchmoveHandle('dragBox',$event)">
         可拖拽元素
    div>
template>
data() {
   
    return {
   

你可能感兴趣的:(Web前端,vue.js)