com-ellipsis.php 727 B

123456789101112131415161718192021222324252627
  1. <template id="com-ellipsis">
  2. <div class="com-ellipsis">
  3. <div v-line-clamp="line + 0">
  4. <el-tooltip v-if="text" class="item" effect="dark" :content="text + ''" placement="top-start">
  5. <p style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" :style="{maxWidth: `${width}px`}">{{ text | emptyFilled }}</p>
  6. </el-tooltip>
  7. <slot></slot>
  8. </div>
  9. </div>
  10. </template>
  11. <script>
  12. Vue.component('com-ellipsis', {
  13. template: '#com-ellipsis',
  14. props: {
  15. line: Number,
  16. text: String,
  17. width: {
  18. type: [String, Number],
  19. default: '150'
  20. }
  21. },
  22. computed: {
  23. },
  24. methods: {},
  25. });
  26. </script>