Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 

15 rindas
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>