A tiptap extension to support drag handle, read the docs to learn more.
pnpm add @vueditor/tiptap-extension-handle
or
npm install @vueditor/tiptap-extension-handle
Tip
For more detailed usage,see the examples directory or more comprehensive usage: rich text editor.
import { Editor } from '@tiptap/core'
import { handle } from '@vueditor/tiptap-extension-handle'
const editor = new Editor({
extension: [handle]
})