You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 line
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>