Level 53
<a @click.prevent="onClick(post.id)">
<img class="card-img-top w-100" :src="post.image_path" />
</a>
data() {
return {
//...
counter: 0
};
},
methods: {
onClick(postId) {
this.counter++;
if(this.counter == 1) {
this.timer = setTimeout(() => {
this.counter = 0;
window.location.href = 'p/'+ postId;
}, 300);
return;
}
clearTimeout(this.timer);
this.counter = 0;
this.likeThePost(postId);
}
},