Props

vusui-editor Props 属性

content

  • Type: Delta | String
  • Default: ''

编辑器内容,可以是 Delta 对象、text 纯文本或 html 字符串,详细信息请参见 Quill Deltaopen in new window 文档。

contentType

  • Type: 'delta' | 'html' | 'text'
  • Default: 'html'

内容类型支持三种格式 deltahtmltext,请确保正确设置 contentType

theme

  • Type: 'snow' | 'bubble'
  • Default: 'snow'

Quill 有两个官方主题 snowbubble,详细信息请参见 Quill Themesopen in new window 文档。

disabled

  • Type: Boolean
  • Default: false

是否禁用编辑器,默认 false

readOnly

  • Type: Boolean
  • Default: false

设置编辑器为只读模式,默认 false

placeholder

  • Type: String
  • Default: '请输入内容...'

用于指定描述输入字段期望值的简短提示。

toolbar

  • Type: String | Array | Object

工具栏选项,有关详细信息,请参见【Toolbar 工具栏】部分。

modules

  • Type: Object | Object[]

注册模块,请参阅【Modules 模块定制】了解更多细节。

options

  • Type: Object

配置选项,请参阅【Options 参数】了解更多细节。

height

  • Type: Number
  • Default: 400

编辑器高度设置

showDrag

  • Type: Boolean
  • Default: true

是否启动拖拽编辑器高度功能,最小拖拽高度 100px,最大拖拽高度 800px