Skip to content

vueditor/tiptap-extension-handle

Repository files navigation

Tiptap extension handle

GitHub License NPM Version NPM Downloads GitHub Repo stars

A tiptap extension to support drag handle, read the docs to learn more.

Installation

pnpm add @vueditor/tiptap-extension-handle

or

npm install @vueditor/tiptap-extension-handle

Basic usage

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]
})