github地址:https://github.com/fex-team/ueditor

优点:

  • 国内开发的,文档比较丰富
  • Github star数: 6.2k

富文本编辑器ueditor(vue-ueditor-wrap)_github

<template>
<basic-container>
<vue-ueditor-wrap v-model="msg" :config="editorConfig"></vue-ueditor-wrap>
</basic-container>
</template>

<script>
import VueUeditorWrap from "vue-ueditor-wrap"; // ES6 Module
export default {
data() {
return {
msg: "<h2>Hello World!</h2>",
editorConfig: {
// 访问 UEditor 静态资源的根路径,可参考 https://hc199421.gitee.io/vue-ueditor-wrap/#/faq
UEDITOR_HOME_URL: "/UEditor/",
// 服务端接口(这个地址是我为了方便各位体验文件上传功能搭建的临时接口,请勿在生产环境使用!!!)
serverUrl: "//ueditor.szcloudplus.com/cos",
},
};
},
components: {
VueUeditorWrap,
},
};
</script>

<style></style>

​ueditor静态资源文件-Javascript文档类资源-​