vue3 中使用element-plus的el-dialog 组件
<style>
.el-dialog.plan-text-pdf .el-dialog__body {
height: 1485px; // 需要在 style 标签写。 建议新增个类名 .plan-text-pdf 防止重复样式
}
</style>
<style lang="scss" scoped>
:deep() .el-dialog .el-dialog__body{
height: 1485px; // 这么写不生效
}
</style>