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.

37 lines
708 B

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