首页前端开发HTMLvue项目中如何使用ueditor

vue项目中如何使用ueditor

时间2024-01-23 08:56:41发布访客分类HTML浏览717
导读:收集整理的这篇文章主要介绍了vue项目中如何使用ueditor,觉得挺不错的,现在分享给大家,也给大家做个参考。这次给大家带来vue项目中如何使用uedITor,vue项目中使用ueditor的注意事项有哪些,下面就是实战案例,一起来看一下...
收集整理的这篇文章主要介绍了vue项目中如何使用ueditor,觉得挺不错的,现在分享给大家,也给大家做个参考。这次给大家带来vue项目中如何使用uedITor,vue项目中使用ueditor的注意事项有哪些,下面就是实战案例,一起来看一下。

以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>
     p>
      mt-button @click="geteditor()" type="danger">
    获取/mt-button>
      script id="editor" type="text/plain" style="width:1024px;
    height:500px;
    ">
    /script>
     /p>
    /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>
    

相信看了本文案例你已经掌握了方法,更多精彩请关注其它相关文章!

推荐阅读:

Canvas如何做出3D动态的Chart图表

WebGL怎样操作json与echarts图表

以上就是vue项目中如何使用ueditor的详细内容,更多请关注其它相关文章!

声明:本文内容由网友自发贡献,本站不承担相应法律责任。对本内容有异议或投诉,请联系2913721942#qq.com核实处理,我们将尽快回复您,谢谢合作!

ueditor使用

若转载请注明出处: vue项目中如何使用ueditor
本文地址: https://pptw.com/jishu/583990.html
H5的canvas图表实现柱状图 使用Adobe Html5 Extension的开发详解

游客 回复需填写必要信息