怎么修改element ui中dialog中的宽度
两种情况:(1):直接在里面定死的width=“50%”<el-dialog :visible.sync="visible" title="新增生产计划" width="55%"></el-dialog>(2):活动的宽度:width=“dialogwidth”dialogwidth是实例化vue里面的一个变量,注意:width前面有一个“:”;<el-dialog
·
两种情况:
(1):直接在里面定死的
width=“50%”
<el-dialog :visible.sync="visible" title="新增生产计划" width="55%">
</el-dialog>
(2):活动的宽度
:width=“dialogwidth”
dialogwidth是实例化vue里面的一个变量,注意:width前面有一个“:”;
<el-dialog :visible.sync="visible" title="新增生产计划" :width="dialogwidth">
</el-dialog>
更多推荐
已为社区贡献1条内容
所有评论(0)