当前位置: 首页> 汽车> 车展 > 2019年最好的国外vps_网页设计费用标准_seo顾问服务 品达优化_临沂头条新闻今日头条

2019年最好的国外vps_网页设计费用标准_seo顾问服务 品达优化_临沂头条新闻今日头条

时间:2025/7/9 16:33:31来源:https://blog.csdn.net/m0_53912016/article/details/146604349 浏览次数: 2次
2019年最好的国外vps_网页设计费用标准_seo顾问服务 品达优化_临沂头条新闻今日头条

tree悬停tooltip效果

文本过长超出展示省略号 
如果文本超出悬停显示tooltip效果 反之不显示
这里直接控制固定宽度限制 试了监听宽度没效果

请添加图片描述

<template><el-treeshow-checkbox:check-strictly="true":data="data"node-key="id":props="defaultProps"><template #default="{ node }"><span><el-tooltip :content="node.label" :disabled="!isTextOverflow(node.label)" placement="top"><span class="tree-node-label">{{ node.label }}</span></el-tooltip></span></template></el-tree>
</template><script>
import { ref } from 'vue';export default {setup() {const data = ref([{ id: 1, name: 'Parent Node with very long text content that may overflow' },{ id: 2, name: 'Parent',children: [{ id: 21, name: 'Child Node with normal length' }]}]);const maxCharLength = ref(10);//定义最大字符 根据需求可调整const defaultProps = {label: 'name',children: 'children'};// 检测文本是否溢出const isTextOverflow = (label) => {return label.length > maxCharLength.value;};return {data,defaultProps,isTextOverflow};}
};
</script><style scoped>
.tree-node-label {display: inline-block;max-width: 150px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;vertical-align: middle;
}
</style>
关键字:2019年最好的国外vps_网页设计费用标准_seo顾问服务 品达优化_临沂头条新闻今日头条

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

责任编辑: