index.vue 743 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <el-tooltip
  3. class="tooltip"
  4. effect="dark"
  5. placement="top"
  6. >
  7. <template #content>
  8. <span class="tooltip-content">{{text}}</span>
  9. </template>
  10. <div class="overflow-text" :style="{width}">
  11. {{text}}
  12. </div>
  13. </el-tooltip>
  14. </template>
  15. <script>
  16. export default {
  17. name: 'overflow-text',
  18. props: {
  19. text: {
  20. type: String,
  21. default: ''
  22. },
  23. width: {
  24. type: String,
  25. default: '200px'
  26. }
  27. }
  28. }
  29. </script>
  30. <style lang="less" scoped>
  31. .tooltip-content{
  32. display: inline-block;
  33. max-width: 300px;
  34. }
  35. .overflow-text{
  36. overflow : hidden;
  37. text-overflow: ellipsis;
  38. display: -webkit-box;
  39. -webkit-line-clamp: 2;
  40. -webkit-box-orient: vertical;
  41. }
  42. </style>