Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- <template>
- <ul>
- <li v-for="comment in store.orderedComment(props.filmId)" class="m-6">
- <p class="bg-white p-4 mb-4 rounded-lg">
- {{ comment.message }}
- </p>
- <p>
- <UiPerson class="h-10 inline-block" /> {{ comment.username }} -
- {{ useDateFormat(comment.added, 'D MMM YYYY') }}
- {{ comment.score }}%
- </p>
- </li>
- </ul>
- <div class="mt-24"></div>
- </template>
- <script setup>
- import { useDateFormat } from '@vueuse/core'
-
- const props = defineProps(['filmId'])
- const store = useCommentStore()
- </script>
|