refactoring

This commit is contained in:
Philipp Kühn 2020-08-18 23:56:39 +02:00
parent 12d24fb35c
commit e2114bbc05
2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
export default abstract class ComponentRenderer {
static type: string
}

View File

@ -3,7 +3,7 @@ import { ComponentRenderer } from '@tiptap/core'
export default class Renderer extends ComponentRenderer {
static type: string = 'vue'
static type = 'vue'
vm!: Vue