UNPKG

gdy-quill-editor

Version:

基于Quill的vue编辑器组件 npm@0.1.6

15 lines (12 loc) 338 B
import Quill from 'quill' const Cursor = Quill.import('blots/block/embed') class GrammarlyInline extends Cursor { static create(value) { const node = super.create(value) // node.innerHTML = value return node } } GrammarlyInline.tagName = 'hr' GrammarlyInline.blotName = 'grammarly-inline' export default GrammarlyInline