> 富文本组件

```vue
<def-editor v-model:content="editorContent" :editorConfig="editorConfig" />
```

```js
const editorContent = ref < string > '<p>666</p>'
watch(
  () => editorContent.value,
  (val) => {
    console.log('父组件的值', val)
  }
)
const editorConfig: Partial<IEditorConfig> = {
  maxLength: 10
}
```
