设置 el-dialog 的高度通常可以通过以下几种方式实现: 1. 通过内联样式设置高度 你可以在 el-dialog 组件上直接使用 :style 绑定来设置高度。例如: html <el-dialog title="提示" :visible.sync="dialogVisible" :style="{ height: '400px' }" > <span>这是一段内容</span> <...