PHP code example of laravel-vue-admin-component / wangeditor

1. Go to this page and download the library: Download laravel-vue-admin-component/wangeditor library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

laravel-vue-admin-component / wangeditor example snippets


$form->item('content','文章内容')->displayComponent(Wangeditor::make());

Wangeditor::make()->menus([
        'head',  // 标题
        'bold',  // 粗体
        'fontSize',  // 字号
        'fontName',  // 字体
        'italic',  // 斜体
        'underline',  // 下划线
        'strikeThrough',  // 删除线
        'foreColor',  // 文字颜色
        'backColor',  // 背景颜色
        'link',  // 插入链接
        'list',  // 列表
        'justify',  // 对齐方式
        'quote',  // 引用
        'emoticon',  // 表情
        'image',  // 插入图片
        'table',  // 表格
        'video',  // 插入视频
        'code',  // 插入代码
        'undo',  // 撤销
        'redo'  // 重复
]);

Wangeditor::make()->zIndex(10);

Wangeditor::make()->uploadImgShowBase64();

Wangeditor::make()->uploadImgServer(route('upload'));