Skip to content
On this page

Editor - 富文本编辑器

基于 QuillEditor 封装,配置项参考 quill

javascript
动态组件配置示例:
{
    tag: 'Editor',
    label: '富文本:',
    className: 'className',
    value: '',
    default: '',
    contentType: 'html',//默认值,可不填写
    uploadFn: (file,callback)=>{//自行实现上传图片,上传后调用callback(url)}
    //toolbar: [],//工具栏,默认不需要传递
    //modules: [],//模块,默认不需要传递
}
1
2
3
4
5
6
7
8
9
10
11
12