element ui:el-dialog设置圆角

2021-08-26  本文已影响0人  猪儿打滚

背景

el-dialog提示框在当前vue页面和main.css设置圆角样式都不起作用

原因


<template>
    <el-dialog
      title="提示"
      :visible.sync="dialogVisible"
      width="30%"
      :custom-class="class1"
      :before-close="handleClose"
    >
      <span>这是一段信息</span>
      <span slot="footer" class="dialog-footer">
        <el-button @click="dialogVisible = false">取 消</el-button>
        <el-button type="primary" @click="dialogVisible = false">确 定</el-button>
      </span>
</template>


<style >
.class1 {
  border-radius: 100px;
}
</style>


上一篇 下一篇

猜你喜欢

热点阅读