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