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

作者:龙儿哥哥的博客 时间:2024-05-10 14:20:43 

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

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

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

2.使用方法

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

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

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

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

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

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

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

<div class="content">
   <vue-ueditor-wrap
       v-model="content"
       editor-id="editor"
       :config="editorConfig"
       :editorDependencies="['ueditor.config.js','ueditor.all.js']"
       style="height:500px;" />
</div>

第五步:配置项

data(){
   return {
         content: '<p>Hello UEditorPlus</p>',
         editorConfig: {
         serverUrl: '后端服务',
         // 配置UEditorPlus的惊天资源
         UEDITOR_HOME_URL: '/static/UEditorPlus/'
     },
   }
}

3.运行项目

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

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

来源:https://www.cnblogs.com/longc-box/archive/2022/08/23/16617238.html

标签:vue,UEditor--plus
0
投稿

猜你喜欢

  • Python实现获取照片拍摄日期并重命名的方法

    2023-04-14 03:26:37
  • Python使用configparser库读取配置文件

    2022-12-21 20:22:56
  • ASP中如何判断字符串中是否包含字母和数字

    2009-07-10 13:12:00
  • python 制作网站筛选工具(附源码)

    2023-11-07 08:26:06
  • python爬虫之自动登录与验证码识别

    2022-05-18 07:22:53
  • CentOS7安装MySQL 8.0.26的过程

    2024-01-20 08:28:01
  • 1秒50万字!js实现关键词匹配

    2024-05-02 16:18:04
  • 如何把一长串数字分位显示?

    2009-11-06 14:01:00
  • js的正则test,match,exec详细解析

    2024-05-02 17:30:20
  • 基于Python爬取股票数据过程详解

    2021-02-27 08:42:18
  • js控制div弹出层实现方法

    2023-10-15 05:53:28
  • python数据挖掘需要学的内容

    2021-02-26 00:54:13
  • javascript中的throttle和debounce浅析

    2024-05-08 10:10:27
  • 在ASP.NET2.0通过SMTP的验证发送EMAIL

    2007-09-23 12:29:00
  • Python sklearn中的.fit与.predict的用法说明

    2023-01-03 23:54:25
  • python中数字列表转化为数字字符串的实例代码

    2021-04-30 02:46:45
  • Python读取及保存mat文件的注意事项说明

    2022-01-10 13:25:54
  • asp如何使用MsChart制图工具?

    2010-06-05 12:40:00
  • 基于Python编写简易的成语接龙游戏

    2022-08-26 02:15:05
  • numpy.random.choice()函数详解

    2023-04-30 09:46:03
  • asp之家 网络编程 m.aspxhome.com