需求为改变elementUI中el-dialog的宽度如下:
<el-dialog title="列表" :visible.sync="Visible">
</el-dialog>
<style scoped>
.el-dialog{
position: relative;
margin: 0 auto 50px;
border-radius: 2px;
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,.3);
box-shadow: 0 1px 3px rgba(0,0,0,.3);
-webkit-box-sizing: border-box;
box-sizing: border-box;
width: 50%;
}
</style>
将以上width:50%改为width:74%并不起作用
在el-dialog增加customClass,且style去掉scoped,宽度改变。
<el-dialog title="列表" :visible.sync="Visible" customClass="customWidth"></el-dialog>
<style>
.customWidth{
width:74%;
}
</style>