您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

25 行
744 B

  1. <template>
  2. <ul>
  3. <li v-for="(comment, index) in store.orderedComment(props.filmId)" class="m-6">
  4. <p class="bg-white p-4 mb-4 rounded-lg"
  5. :class="{ 'rounded-bl-none': isEven(index), 'rounded-br-none': !isEven(index) }">
  6. {{ comment.message }}
  7. </p>
  8. <p :class="{ 'text-right': !isEven(index) }">
  9. <UiPerson class="h-10 inline-block" /> {{ comment.username }} -
  10. {{ useDateFormat(comment.added, 'D MMM YYYY') }}
  11. {{ comment.score }}%
  12. </p>
  13. </li>
  14. </ul>
  15. <div class="mt-24"></div>
  16. </template>
  17. <script setup>
  18. import { useDateFormat } from '@vueuse/core'
  19. const props = defineProps(['filmId'])
  20. const store = useCommentStore()
  21. const isEven = (index) => (index % 2 === 0)
  22. </script>