diff --git a/components/comment/form.vue b/components/comment/form.vue index 4330a97..9c0a188 100644 --- a/components/comment/form.vue +++ b/components/comment/form.vue @@ -6,7 +6,8 @@ - + {{ score }}% + @@ -17,14 +18,25 @@ const store = useCommentStore() const props = defineProps(['filmId']) +const username = ref('') +const message = ref('') +const score = ref(50) + +const resetForm = () => { + username.value = '' + message.value = '' + score.value = 5 +} + const sendComment = () => { store.add({ username: username.value, message: message.value, - score: document.getElementById('score').value, + score: score.value, filmId: props.filmId, added: Date.now(), }) + resetForm() } diff --git a/components/comment/list.vue b/components/comment/list.vue index 195779a..c4c2cca 100644 --- a/components/comment/list.vue +++ b/components/comment/list.vue @@ -5,7 +5,9 @@ {{ comment.message }}
- {{ comment.username }} - {{ useDateFormat(comment.added, 'D MMM YYYY') }}
+