赞
踩
在vue项目中 点击图片获取相对图片的坐标
HTML
<img :src="bg" @click="getMouseXY" />
JS
getMouseXY(e){ this.x = e.offsetX this.y = e.offsetY}