53
res.json())
.then(data => {
if(data.success) {
count = data.data.likes;
liked = true;
localStorage.setItem('liked_179', 'true');
}
loading = false;
})
.catch(() => loading = false);
}
"
class="flex items-center gap-1 cursor-pointer transition-colors"
:class="liked ? 'text-red-500' : 'hover:text-red-500'">
2