elementplus Dialog 对话框设置距离页面顶部的距离

elementplus Dialog 对话框设置距离页面顶部的距离_第1张图片
默认为 15vh,当弹窗过于高的时候,这个距离其实是不合适的

<el-dialog
    v-model="dialogVisible"
    title="Tips"
    width="30%"
    :before-close="handleClose"
    top="6vh"
  >
    <span>This is a messagespan>
    <template #footer>
      <span class="dialog-footer">
        <el-button @click="dialogVisible = false">Cancelel-button>
        <el-button type="primary" @click="dialogVisible = false">
          Confirm
        el-button>
      span>
    template>
  el-dialog>

你可能感兴趣的:(element-ui,Dialog,对话框,elementplus,top)