mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-23 08:47:50 +08:00
7 lines
163 B
TypeScript
7 lines
163 B
TypeScript
import { Editor as CoreEditor } from '@tiptap/core'
|
|
import Vue from 'vue'
|
|
|
|
export class Editor extends CoreEditor {
|
|
public contentComponent: Vue | null = null
|
|
}
|