listContent.vue 312 B

12345678910111213141516171819
  1. <template>
  2. <view class="listContent">
  3. <view class="list_header">
  4. <view class="list_text">
  5. {{main.subject_collection?.name}}
  6. </view>
  7. <view class="list_more">
  8. 更多
  9. </view>
  10. </view>
  11. </view>
  12. </template>
  13. <script setup>
  14. defineProps(['main'])
  15. </script>
  16. <style scoped lang="scss">
  17. </style>