marker.vue 525 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <div
  3. class="el-slider__marks-text"
  4. @click.stop="onMarkClick"
  5. style="
  6. {
  7. this.mark.style|| {
  8. }
  9. }
  10. ">
  11. {{ label }}
  12. </div>
  13. </template>
  14. <script>
  15. export default {
  16. name: 'ElMarker',
  17. props: {
  18. mark: { type: [String, Object] },
  19. },
  20. data() {
  21. return {
  22. label: '',
  23. }
  24. },
  25. mounted() {
  26. this.label = typeof this.mark === 'string' ? this.mark : this.mark.label
  27. },
  28. methods: {
  29. onMarkClick(e) {
  30. this.$emit('click')
  31. },
  32. },
  33. }
  34. </script>