Advertisement
Guest User

Untitled

a guest
Feb 16th, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. <template>
  2. <v-container>
  3. <v-hover v-slot:default="{ hover }">
  4. <v-card
  5. width="300"
  6. height="380"
  7. class="custom-debug"
  8. :elevation="hover ? settings.hover_elevation : settings.elevation"
  9. >
  10. <a
  11. @click="() => goToClasses(course.available)"
  12. class="custom-debug custom-nav-button"
  13. >
  14. <v-img
  15. :src="course.image_url"
  16. style="height: 250px; border-top-left-radius: 5px; border-top-right-radius: 5px"
  17. class="custom-debug"
  18. />
  19. <v-card-text
  20. style="padding: 10px 15px 0 15px"
  21. >
  22. <v-toolbar-title
  23. class="custom-debug subtitle-1"
  24. style="color: black"
  25. >
  26. {{ course.title }}
  27. </v-toolbar-title>
  28. </v-card-text>
  29. <BtnStatusCourse
  30. style="padding: 0 0 0 0; margin: 10px 0 0 15px; width: 266px"
  31. class="custom-debug d-flex justify-start"
  32. :course="course"
  33. />
  34. <div class="custom-debug" style="padding: 0 0 0 0; margin: 20px 0 0 15px; width: 266px">
  35. <v-progress-linear
  36. :value="classStatus(course)"
  37. :color="course.available ? settings.general_color : 'grey'"
  38. />
  39. </div>
  40. </a>
  41. </v-card>
  42. </v-hover>
  43. </v-container>
  44. </template>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement