wangEditor
wangEditor copied to clipboard
如何全部去掉或隐藏菜单栏
如何全部去掉菜单栏,只保留输入框(支持富文本),并且保持默认宽度? 谢谢!
你是指这样吗?
你是指这样吗?
我想要这样的效果,请问是怎么实现的
你是指这样吗?
我想要这样的效果,请问是怎么实现的
<div style="border: 1px solid #ccc">
<Toolbar
style="border-bottom: 1px solid #ccc"
:editor="editorRef"
:defaultConfig="toolbarConfig"
:mode="mode"
/>
<Editor
style="height: 700px; overflow-y: hidden;"
v-model="valueHtml"
:defaultConfig="editorConfig"
:mode="mode"
@onCreated="handleCreated"
@customPaste="customPaste"
/>
</div>
这段是官方模板,只要去掉
<Toolbar
style="border-bottom: 1px solid #ccc"
:editor="editorRef"
:defaultConfig="toolbarConfig"
:mode="mode"
/>
就好了,就没有菜单栏了
你是指这样吗?