| 123456789101112131415161718192021222324252627 |
- <template id="com-ellipsis">
- <div class="com-ellipsis">
- <div v-line-clamp="line + 0">
- <el-tooltip v-if="text" class="item" effect="dark" :content="text + ''" placement="top-start">
- <p style="overflow: hidden;white-space: nowrap;text-overflow: ellipsis;" :style="{maxWidth: `${width}px`}">{{ text | emptyFilled }}</p>
- </el-tooltip>
- <slot></slot>
- </div>
- </div>
- </template>
- <script>
- Vue.component('com-ellipsis', {
- template: '#com-ellipsis',
- props: {
- line: Number,
- text: String,
- width: {
- type: [String, Number],
- default: '150'
- }
- },
- computed: {
- },
- methods: {},
- });
- </script>
|