Badge.vue 453 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <v-card>
  3. <v-img
  4. :src="img"
  5. :alt="title"
  6. />
  7. <v-card-title>{{ title }}</v-card-title>
  8. </v-card>
  9. </template>
  10. <script setup lang="ts">
  11. defineProps({
  12. title: {
  13. type: String,
  14. required: true
  15. },
  16. img: {
  17. type: String,
  18. required: true
  19. }
  20. })
  21. </script>
  22. <style scoped lang="scss">
  23. .v-card {
  24. height: 148px;
  25. width: 128px;
  26. padding: 18px;
  27. .v-img {
  28. height: 48px;
  29. }
  30. }
  31. </style>