Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- <template>
- <ul>
- <li v-for="comment in store.orderedComment">
- {{ comment.username }}
- {{ comment.added }}
- {{ comment.message }}
- </li>
- </ul>
- <div class="mt-24"></div>
- </template>
- <script setup>
- const store = useCommentStore()
- </script>
|