volunteer-menu-item.vue 429 B

123456789101112131415161718
  1. <template>
  2. <view class="w-92 flex flex-col items-center gap-8" @click="$emit('click')">
  3. <ie-image is-oss :src="icon" custom-class="w-92"/>
  4. <text class="keep-all whitespace-nowrap text-xs text-fore-title">{{ title }}</text>
  5. </view>
  6. </template>
  7. <script setup lang="ts" name="VolunteerMenuItem">
  8. defineProps({
  9. title: String,
  10. icon: String
  11. })
  12. defineEmits(['click'])
  13. </script>
  14. <style scoped>
  15. </style>