vue2使用ueditor

最近用vue2做项目,需要用到富文本编辑器,开始用的vue2-editor这个是基于Quill,看上去听漂亮的,但是有几点无法满足需求

  1. 图片是用base64保存的,无法上传图片
  2. 对文字的编辑能力较弱,如法指定选择文字修改标题,只能整行修改。

于是决定用ueditor。但是网上找了好多vue2使用ueditor的插件都不是很好用。最后找到了一种解决方案,其实不是基于vue插件,是利用webpack实现的。下面就说说步骤。

以vue-cli生成的项目为例
index.html添加如下代码,具体地址根据自己的项目修改

    <script type="text/javascript" charset="utf-8" src="http://127.0.0.1/vue/static/utf8-php/ueditor.config.js"></script>
    <script type="text/javascript" charset="utf-8" src="http://127.0.0.1/vue/static/utf8-php/ueditor.all.min.js"> </script>

webpack.base.cong.js添加如下配置

externals: {
    'UE': 'UE',
  },

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-line

export 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>

实现方案源自https://segmentfault.com/q/1010000007707112?_ea=1428451
感谢作者提供的方案

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值