是
Drawer
抽屉组件内嵌了一个表单,但是表单的内容过长怎么才可以滚屏
Translation of this issue:
yes
Drawer
Drawer components have a form embedded, but how can the form scroll if its content is too long?
Add global style
.el-drawer__body {
height: 100%;
box-sizing: border-box;
overflow-y: auto;
padding: 20px; // According to the situation
}
Most helpful comment
Add global style
.el-drawer__body {
height: 100%;
box-sizing: border-box;
overflow-y: auto;
padding: 20px; // According to the situation
}