网络编程
位置:首页>> 网络编程>> JavaScript>> 如何在vue项目中使用UEditor--plus

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

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

标签: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

第二步:解压后找到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

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com