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

20 行
483 B

  1. <template>
  2. <ul>
  3. <li v-for="comment in store.orderedComment(props.filmId)" class="m-6">
  4. <p class="bg-white p-4 mb-4 rounded-lg">
  5. {{ comment.message }}
  6. </p>
  7. <p>
  8. {{ comment.username }} - {{ useDateFormat(comment.added, 'D MMM YYYY') }}
  9. </p>
  10. </li>
  11. </ul>
  12. <div class="mt-24"></div>
  13. </template>
  14. <script setup>
  15. import { useDateFormat } from '@vueuse/core'
  16. const props = defineProps(['filmId'])
  17. const store = useCommentStore()
  18. </script>