Skip to content

Instantly share code, notes, and snippets.

View xhemj's full-sized avatar
🍧

xhemj xhemj

🍧
View GitHub Profile
@xhemj
xhemj / v-drag.js
Created January 4, 2023 00:37 — forked from sunzsh/v-drag.js
v-drag指令
Vue.directive('drag', (el) => {
const oDiv = el // 当前元素
const minTop = oDiv.getAttribute('drag-min-top')
const ifMoveSizeArea = 20
oDiv.onmousedown = e => {
let target = oDiv
while (window.getComputedStyle(target).position !== 'absolute' && target !== document.body) {
target = target.parentElement
}