How to hide the bottom prompt field of ueditor?

clipboard.png

I want to hide the prompt field at the bottom of ueditor. I saw that api, did not find out how to hide

Mar.12,2021

api does not see where the settings are found, so modify the css file directly;

themesdefaultcssueditor.css
approximate line 200
.edui-default .edui-editor-bottomContainer {

display: none;
overflow: hidden;

}


configuration item plus two
elementPathEnabled: false / / whether the element path is enabled. By default, true displays
wordCount:false / / whether word count is enabled

.
Menu