如何在vue项目中使用UEditor--plus

1:UEditor-plus富文本编辑器如何在vue项目中使用

备注:UEditor是由百度web前端研发部开发的所见即所得的开源富文本编辑器,由于该项目不在维护;程序员自发对其进行了维护,详见

https://gitee.com/modstart-lib/ueditor-plus?_from=gitee_search;

2.使用方法

第一步:在git上拉取ueditor代码到本地

如何在vue项目中使用UEditor--plus_第1张图片

第二步:解压后找到dist文件夹,复制并粘贴到vue项目包中的static(vue3粘贴到public)文件夹目录下,并改名为UEditor

如何在vue项目中使用UEditor--plus_第2张图片

第三步:在页面中引入UEditorPlus富文本编辑器

如何在vue项目中使用UEditor--plus_第3张图片

第四步:在页面中插入组件

第五步:配置项

data(){
    return {
          content: '

Hello UEditorPlus

', editorConfig: { serverUrl: '后端服务', // 配置UEditorPlus的惊天资源 UEDITOR_HOME_URL: '/static/UEditorPlus/' }, } }

3.运行项目

如何在vue项目中使用UEditor--plus_第4张图片

注:由于配置项未配置,需要与后端小伙伴联调,才可使用上传功能

到此这篇关于如何在vue项目中使用UEditor--plus的文章就介绍到这了,更多相关vueUEditor--plus内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(如何在vue项目中使用UEditor--plus)