**created()**调用 this.getList() // 开启拖拽的指令 directives: { drag: { // 指令的定义 bind: function (el) { const odiv = el // 获取当前元素 odiv.onmousedown = (e) => { // 算出鼠标相对元素的位置 const disX = e.clientX - odiv.offsetLeft const disY = e.clientY - odiv.offs...