25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 lines
317 B

  1. <template>
  2. <ul>
  3. <li v-for="comment in store.orderedComment(props.filmId)">
  4. {{ comment.username }}
  5. {{ comment.added }}
  6. {{ comment.message }}
  7. </li>
  8. </ul>
  9. <div class="mt-24"></div>
  10. </template>
  11. <script setup>
  12. const props = defineProps(['filmId'])
  13. const store = useCommentStore()
  14. </script>