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
Showing only changes of commit c58ad47782 - Show all commits

View File

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