This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<h3>How did you like todays TLA?</h3>
|
||||
<h3>Did you enjoy todays TLA?</h3>
|
||||
<div>
|
||||
<UButton @click="makeRequest(1)" class="rounded-l-full" :icon="current == 1 ? 'mdi:thumbs-up' : 'mdi:thumbs-up-outline'" size="md" color="neutral" variant="outline">{{ likes }}</UButton>
|
||||
<UButton @click="makeRequest(-1)" class="rounded-r-full" :icon="current == -1 ? 'mdi:thumbs-down' : 'mdi:thumbs-down-outline'" size="md" color="neutral" variant="outline">{{ dislikes }}</UButton>
|
||||
@@ -26,6 +26,7 @@
|
||||
},
|
||||
methods: {
|
||||
makeRequest(type: number) {
|
||||
if (type != 0){
|
||||
if (this.current == type){
|
||||
this.current = 0;
|
||||
if (type == 1) this.likes--;
|
||||
@@ -44,6 +45,7 @@
|
||||
|
||||
this.current = type;
|
||||
}
|
||||
}
|
||||
|
||||
axios
|
||||
.get("/api/review/en/"+type)
|
||||
|
||||
Reference in New Issue
Block a user