proEditor 组件
- 富文本编辑器封装组件
- 基于 wangEditor实现
- 功能强大,支持多种格式的文本编辑
样例
引入
js
import { proEditor } from "profield-editor";
import "profield-editor/dist/style.css";
使用
html
<proEditor
:upload-func="upload"
:readonly="readonly"
v-model:value="editorData"
/>
API
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
value(v-model) | 编辑器内容 | string | '' |
readonly | 是否只读 | boolean | false |
upload-func | 上传图片的方法 | (file:File)=>Promise<string> | ()=>{} |