question-preview-list.vue 422 B

12345678910111213141516171819
  1. <template>
  2. <view class="p-20 fx-col gap-20">
  3. <question-preview-list-item v-for="q in list" :item="q"/>
  4. </view>
  5. </template>
  6. <script setup>
  7. import QuestionPreviewListItem from "@/pages/topic-center/topic-collection/components/question-preview-list-item.vue";
  8. import {createPropDefine} from "@/utils";
  9. const props = defineProps({
  10. list: createPropDefine([], Array)
  11. })
  12. </script>
  13. <style scoped>
  14. </style>