Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- <template>
- <ul>
- <li v-for="comment in store.orderedComment(props.filmId)">
- {{ comment.username }}
- {{ comment.added }}
- {{ comment.message }}
- </li>
- </ul>
- <div class="mt-24"></div>
- </template>
- <script setup>
- const props = defineProps(['filmId'])
- const store = useCommentStore()
- </script>
|