tiptap editor #2222

Merged
konrad merged 66 commits from dpschen/frontend:feature/feat-tiptap-editor into main 2023-10-22 13:49:01 +00:00
1 changed files with 4 additions and 5 deletions
Showing only changes of commit c58ad47782 - Show all commits

View File

@ -72,11 +72,10 @@ const CustomTableCell = TableCell.extend({
},
})
const props = defineProps({
modelValue: {
type: String as PropType<string>,
default: '',
},
const props = withDefaults(defineProps<{
modelValue?: string,
}>(), {
modelValue: '',
})
const emit = defineEmits(['update:modelValue', 'change'])