Skip to content

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是否只读booleanfalse
upload-func上传图片的方法(file:File)=>Promise<string>()=>{}

杨利伟的博客