您可以像文档
中的示例一样使用
Floating Menu
并使用插入内容。
{
editor && (
<FloatingMenu editor={editor} tippyOptions={{ duration: 100 }}>
<button
onClick={() => editor.chain().focus().insertContent("hello").run()}
>
hello
</button>
<button
onClick={() => editor.chain().focus().insertContent("world").run()}
>
world
</button>
</FloatingMenu>
);
}
<EditorContent editor={editor} />
请注意,您可能需要使用
shouldShow
prop.