时间:2021-05-26
以vue-cli生成的项目为例
1.static文件夹下先放入ueditor文件
2.index.html添加如下代码
<script type="text/javascript" charset="utf-8" src="static/ueditor/ueditor.config.js"></script><script type="text/javascript" charset="utf-8" src="static/ueditor/ueditor.all.min.js"></script>3.webpack.base.conf.js添加如下配置
externals: { 'UE': 'UE', },4.index.html中添加
<script type="text/javascript"> window.UEDITOR_HOME_URL = "/static/ueditor/";//配置路径设定为UEditor所放的位置</script>5.editor组件
<template> <div> <mt-button @click="geteditor()" type="danger">获取</mt-button> <script id="editor" type="text/plain" style="width:1024px;height:500px;"></script> </div></template><script>const UE = require('UE');// eslint-disable-lineexport default { name: 'editorView', data: () => ( { editor: null, } ), methods: { geteditor() { console.log(this.editor.getContent()); }, }, mounted() { this.editor = UE.getEditor('editor'); }, destroyed() { this.editor.destroy(); },};</script><style></style>以上这篇vue项目中使用ueditor的实例讲解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
UEditor编辑器想要开发的web项目,比如javaweb项目中使用UEditor,下面我们就来看看详细的教程。软件名称:UEditor百度编辑器v1.2.6
内容概述本系列“vue项目中使用bpmn-xxxx”分为七篇,均为自己使用过程中用到的实例,手工原创,目前陆续更新中。主要包括vue项目中bpmn使用实例、应用
CKEditor和UEditor使用比较本来项目中使用CKEditor已经做好了的富文本编辑器的功能,但是业务考虑到美观性要求换成UEditor,所以就在这里总
最近在vue项目中需要使用富文本编辑器,于是将Ueditor集成进来,作为公共组件。项目地址:https://github.com/suweit
最近在一个刚结束的一个项目中使用到了UEditor编辑器,下面总结一下遇到的问题以及使用时需要注意的地方:1.使用UEditor插件需要先对其进行路径配置:在u