Код для обработчика моего дабл клика. В этот же момент, я хочу чтобы данные о elem.fileName были отправленны на сервер и там обработаны
methods:{
clickOnRow: function(event, elem){
this.clicks++
if(this.clicks === 1) {
var self = this
this.timer = setTimeout(function() {
console.log("одинарный");
self.clicks = 0
}, this.delay);
} else{
clearTimeout(this.timer);
console.log("двойной");
console.log(elem.fileName);
this.currentElem = elem.fileName;
this.$emit('current-elem',this.elem.fileName);
this.clicks = 0;
}
}
}
}