zxxi7i/editor
最新稳定版本:v1.0.5
Composer 安装命令:
composer require zxxi7i/editor
包简介
surface editor富文本组件
关键字:
README 文档
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 |
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-05-24