# ueditorplus
**Repository Path**: mo3408/ueditorplus
## Basic Information
- **Project Name**: ueditorplus
- **Description**: 🌈🌈🌈祝开发者2026即将到来的国庆节快乐!UEditorPlus 是基于 UEditor 二次开发的富文本编辑器,让 UEditor 焕然一新,已集成秀米、135编辑器,会不定时更新!!!
- **Primary Language**: JavaScript
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: https://blog.snowytime.cn
- **GVP Project**: No
## Statistics
- **Stars**: 47
- **Forks**: 20
- **Created**: 2024-09-05
- **Last Updated**: 2026-08-26
## Categories & Tags
**Categories**: text-editor
**Tags**: 编辑器
## README
# UEditor Plus [](https://gitee.com/mo3408/ueditorplus) [](https://github.com/mo3408/ueditorplus)
🌈🌈🌈祝开发者2026即将到来的国庆节快乐!UEditorPlus 是基于 UEditor 二次开发的富文本编辑器,让 UEditor 焕然一新,已集成秀米、135编辑器,会不定时更新!!!
> dist文件夹已删除,根目录相当于dist.
## 功能亮点
- 支持文档一键导入,支持Word文档(docx)、Markdown文档(md)文档
- 全新的UI外观,使用字体图标替换原有图片图标
- 移除过时、无用的插件支持,不断完善使用体验
- 图片、文件、视频上传配置化定制增强
- 演示界面重构,右上角可直接查看当前演示界面代码
- 兼容现有UEditor,实现无缝切换
## 使用教程
##
### 演示
参考index.html文件
### 原生使用
```html
```
### vue2 使用
```
npm i --save vue-ueditor-wrap@2.x
# 或
yarn add --save vue-ueditor-wrap@2.x
```
解压 UEditorPlus 到静态资源目录
复制资源文件到项目 public/static/UEditorPlus/ 目录 (Vue部署可参考,传统方式请以上面为准)
引入组件并使用
```html
```
### vue3 使用
① 安装插件支持
```shell
npm i --save vue-ueditor-wrap@3.x
# 或
yarn add --save vue-ueditor-wrap@3.x
```
② 解压 UEditorPlus 到静态资源目录
复制资源到项目 `public/static/UEditorPlus/` 目录(改成自己的)
③ 引入组件并使用
**main.js**
```javascript
import {createApp} from 'vue'
import App from './App.vue'
import VueUeditorWrap from 'vue-ueditor-wrap';
createApp(App).use(VueUeditorWrap).mount('#app')
```
**App.vue**
```html
```
### react 使用
① 安装插件支持
```shell
npm i --save react-ueditor-wrap
# 或
yarn add --save react-ueditor-wrap
```
② 解压 UEditorPlus 到静态资源目录
复制资源到项目 `public/static/UEditorPlus/` 目录(改成自己的)
③ 引入组件并使用
```jsx
import RcUeditor from 'react-ueditor-wrap';
function App() {
const hanldeChage = (value) => {
console.log('RcUeditor', value);
}
return (
Hello UEditorPlus'}
ueditorUrl={'/static/UEditorPlus/ueditor.all.js'}
ueditorConfigUrl={'/static/UEditorPlus/ueditor.config.js'}
editorConfig={{
// 后端服务地址,后端处理参考
// https://open-doc.modstart.com/ueditor-plus/backend.html
initialFrameWidth: '100%',
serverUrl: '/api/path/to/server',
UEDITOR_HOME_URL: '/static/UEditorPlus/',
UEDITOR_CORS_URL: '/static/UEditorPlus/',
}}
onChange={hanldeChage}/>
);
}
export default App;
```
## 二次开发
### 第一步,clone代码到本地
```shell
git clone https://gitee.com/mo3408/ueditorplus.git
或
git clone https://github.com/mo3408/ueditorplus.git
git clone https://gitcode.com/mo3408/ueditorplus.git
```
### 第二步,开始功能开发
使用浏览器打开 `index.html` 页面相关内容,完成功能开发
## 开源协议
- Apache 2.0