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.
 
 
 
 
 

14 rindas
265 B

  1. <template>
  2. <ul>
  3. <li v-for="comment in store.orderedComment">
  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 store = useCommentStore()
  13. </script>