You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
679 B

  1. <template>
  2. <v-card>
  3. <v-img
  4. :src="imageSrc"
  5. height="200px"
  6. />
  7. <v-card-title primary-title class="layout justify-center">
  8. <div class="headline text-xs-center font-weight-bold mb-2">
  9. {{ title }}
  10. </div>
  11. </v-card-title>
  12. <v-card-text class="subtitle-1 layout justify-center">
  13. {{ text }}
  14. </v-card-text>
  15. </v-card>
  16. </template>
  17. <script>
  18. export default {
  19. props: {
  20. title: {
  21. type: String,
  22. default: '',
  23. required: true
  24. },
  25. text: {
  26. type: String,
  27. default: '',
  28. required: true
  29. },
  30. imageSrc: {
  31. type: String,
  32. default: '',
  33. required: true
  34. }
  35. }
  36. }
  37. </script>