選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

40 行
1.2 KiB

  1. <template>
  2. <form @submit.prevent="sendComment()" class="flex flex-col bg-slate-200 my-12 p-4 w-full rounded-md">
  3. <input v-model="username" type="text" placeholder="username" min="3" max="50" required id="username">
  4. <textarea v-model="message" type="textarea" placeholder="message" min="3" max="500" required id="message" />
  5. <div class="scoreContainer">
  6. <label for="score">
  7. Note:
  8. </label>
  9. <input type="range" name="score" min="1" max="10" id="score" class="w-full">
  10. </div>
  11. <button type="submit"
  12. class="bg-white rounded-md p-2 inline-flex items-center justify-center text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500">envoyer</button>
  13. </form>
  14. </template>
  15. <script setup lang="ts">
  16. const store = useCommentStore()
  17. const props = defineProps(['filmId'])
  18. const sendComment = () => {
  19. store.add({
  20. username: username.value,
  21. message: message.value,
  22. score: document.getElementById('score').value,
  23. filmId: props.filmId,
  24. added: Date.now(),
  25. })
  26. }
  27. </script>
  28. <style lang="scss" scoped>
  29. form {
  30. input,
  31. textarea,
  32. .scoreContainer {
  33. @apply p-4 m-2;
  34. }
  35. }
  36. </style>