亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue2.0項目中使用Ueditor富文本編輯器示例代碼

發布時間:2020-10-23 21:59:05 來源:腳本之家 閱讀:154 作者:獨木成林 欄目:web開發

最近在vue項目中需要使用富文本編輯器,于是將Ueditor集成進來,作為公共組件。

項目地址:https://github.com/suweiteng/vue2-management-platform 

1.放入靜態資源并配置

首先把官網下載的Ueditor資源,放入靜態資源src/static中。

vue2.0項目中使用Ueditor富文本編輯器示例代碼

 修改ueditor.config.js中的window.UEDITOR_HOME_URL配置,如下圖:

vue2.0項目中使用Ueditor富文本編輯器示例代碼

2.引入

在main.js中引入

import '../static/UE/ueditor.config.js'
import '../static/UE/ueditor.all.min.js'
import '../static/UE/lang/zh-cn/zh-cn.js'
import '../static/UE/ueditor.parse.min.js'

3.開發公共組件

開發公共組件,可設置填充內容defaultMsg,配置信息config(寬度和高度等),并提供獲取內容的方法。

<template>
 <div>
  <script id="editor" type="text/plain"></script>
 </div>
</template>
<script>
 export default {
  name: 'UE',
  data () {
   return {
    editor: null
   }
  },
  props: {
   defaultMsg: {
    type: String
   },
   config: {
    type: Object
   }
  },
  mounted() {
   const _this = this;
   this.editor = UE.getEditor('editor', this.config); // 初始化UE
   this.editor.addListener("ready", function () {
    _this.editor.setContent(_this.defaultMsg); // 確保UE加載完成后,放入內容。
   });
  },
  methods: {
   getUEContent() { // 獲取內容方法
    return this.editor.getContent()
   }
  },
  destroyed() {
   this.editor.destroy();
  }
 }
</script>

4.使用

當我們需要使用富文本編輯器時,直接調用公共組件即可

<template>
 <div class="components-container">
  <div class="info">UE編輯器示例<br>需要使用編輯器時,調用UE公共組件即可。可設置填充內容defaultMsg,配置信息config(寬度和高度等),可調用組件中獲取內容的方法。</div>
  <button @click="getUEContent()">獲取內容</button>
  <div class="editor-container">
   <UE :defaultMsg=defaultMsg :config=config ref="ue"></UE>
  </div>
 </div>
</template>
<style>
 .info{
  border-radius: 10px;
  line-height: 20px;
  padding: 10px;
  margin: 10px;
  background-color: #ffffff;
 }
</style>
<script>
 import UE from '../../components/ue/ue.vue';
 export default {
  components: {UE},
  data() {
   return {
    defaultMsg: '這里是UE測試',
    config: {
     initialFrameWidth: null,
     initialFrameHeight: 350
    }
   }
  },
  methods: {
   getUEContent() {
    let content = this.$refs.ue.getUEContent();
    this.$notify({
     title: '獲取成功,可在控制臺查看!',
     message: content,
     type: 'success'
    });
    console.log(content)
   }
  }
 };
</script>

效果如下:

vue2.0項目中使用Ueditor富文本編輯器示例代碼

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

公主岭市| 电白县| 山东| 莫力| 临泽县| 九龙县| 岗巴县| 新安县| 鸡东县| 铜川市| 宁都县| 甘肃省| 琼结县| 长阳| 大港区| 鄄城县| 汕头市| 睢宁县| 阳东县| 石阡县| 花莲市| 固阳县| 青川县| 达日县| 乌恰县| 固安县| 平谷区| 香格里拉县| 泾川县| 华阴市| 从化市| 黑龙江省| 金门县| 葫芦岛市| 阿巴嘎旗| 海淀区| 丰顺县| 凤城市| 泸西县| 乐安县| 攀枝花市|