设置 el-dialog的长宽
时间: 2023-11-20 18:54:54 浏览: 120
改变el-table宽度
5星 · 资源好评率100%
要设置el-dialog的长宽,可以通过设置el-dialog组件的width和height属性来实现。例如:
```
<el-dialog
title="Dialog Title"
:visible.sync="dialogVisible"
:width="400"
:height="300">
<p>Dialog Content</p>
</el-dialog>
```
在上面的代码中,我们设置了el-dialog的宽度为400px,高度为300px。你可以根据自己的需要调整这些值来满足你的需求。
阅读全文