在stryle内部设置样式修改ElMessageBox组件的样式,设置:deep() 以及!important均为生效,我们可以使用他自带的功能设置样式
1、导入引用的组件
import { ElMessageBox, useFocus } from "element-plus";
import { h } from 'vue'
2、使用
ElMessageBox({
title: row.tailName,
message: h('div', {style: 'height: 22vh;overflow-y: auto;'}, [
h('span', null, relationPart.itemContent),
]),
showCancelButton: false,
showConfirmButton:false,
}).then((action) => {
})
如上设置了内容的高度和自适应,并且删除了取消按钮和确认按钮。