定制 zxxi7i/editor 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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);

iDsjta.png

Attributes

属性名说明类型默认值
editorConfig编辑器配置Array[]
toolbarConfig工具栏配置Array[]
editorStyle编辑器样式Array[]
mode富文本模式stringdefault

@see https://www.wangeditor.com/v5/

统计信息

  • 总下载量: 0
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-05-24