美文网首页
elementUI Dialog 固定高度

elementUI Dialog 固定高度

作者: 明月几何8 | 来源:发表于2020-08-13 14:12 被阅读0次
<el-dialog
  title="提示"
  :visible.sync="dialogVisible"
  width="30%"
  :before-close="handleClose">
  <div class="el-dialog-div">这是一段信息</div>
  <span slot="footer" class="dialog-footer">
    <el-button @click="dialogVisible = false">取 消</el-button>
    <el-button type="primary" @click="dialogVisible = false">确 定</el-button>
  </span>
</el-dialog>
.el-dialog-div {
  height: 70vh;
  overflow: auto;
}

相关文章

网友评论

      本文标题:elementUI Dialog 固定高度

      本文链接:https://www.haomeiwen.com/subject/mkibdktx.html