使用popper-class
为 Tooltip
的 popper
添加类名
<el-tooltip
effect="dark"
:content="row.range"
placement="top-start"
popper-class="tool-tip"
>
<div class="td-nowrap">{{ row.range }}</div>
</el-tooltip>
在当前组件新建一个style
,不要写scoped
,这里的样式会应用到全局,所以class
命名一定要保证不要和全局别的类名重复文章来源:https://www.toymoban.com/news/detail-604340.html
<style lang="scss" scoped>
.td-nowrap {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
</style>
<style>
.tool-tip {
max-width: 400px;
}
</style>
当然,也可以用slot
,在slot
中自定义类名
文章来源地址https://www.toymoban.com/news/detail-604340.html
到了这里,关于el-tooltip 修改宽度的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!