hinesboy / mavonEditor

mavonEditor - A markdown editor based on Vue that supports a variety of personalized features
http://www.mavoneditor.com/
MIT License
6.42k stars 917 forks source link

为使用滚动条,设置最大高度,但全屏显示受到影响。 #696

Open Amuro-Nari opened 3 years ago

Amuro-Nari commented 3 years ago

🐛 Bug Report

为使用滚动条,设置最大高度: image

非全屏: image

全屏: image

非全屏下当然可以正常显示。 但全屏高度不是正常的 100%,而是我设置的 30rem。

LemonHan commented 3 years ago

@fullScreen="handleFullScreen" :style="'height:' + editHeight " 用fullScreen事件,自己写个handleFullScreen函数处理editHeight 比如这样 handleFullScreen(bFull){ if(bFull){ this.editHeight="100%" }else{ this.editHeight="500px" } }