zxxi7i / editor
surface editor富文本组件
v1.0.5
2024-05-24 23:37 UTC
Requires
- iszsw/surface: ~3.0
README
surface 的富文本组件
安装
# 运行环境要求 PHP8+
composer require zxxi7i/editor
使用
use surface\components\Form;
use surface\editor\Editor;
use surface\Surface;
$surface = new Surface();
// 注册组件
Editor::register($surface);
$form = (new Form())
->props(
[
"columns" => [
(new Editor())
->name('editor')->label("详情")
->value("<h1>Hello</h1>")
->props(
[
"editorStyle" => [
"minHeight" => "150px",
]
]
)
,
],
]
);
echo $form->view($surface);
Attributes
属性名 | 说明 | 类型 | 默认值 |
---|---|---|---|
editorConfig | 编辑器配置 | Array | [] |
toolbarConfig | 工具栏配置 | Array | [] |
editorStyle | 编辑器样式 | Array | [] |
mode | 富文本模式 | string | default |