日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 前端技术 > vue >内容正文

vue

适合vue的富文本框

發布時間:2025/4/16 vue 50 豆豆
生活随笔 收集整理的這篇文章主要介紹了 适合vue的富文本框 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

直接做成一個組件,在需要的地方直接調用即可,能夠自動將內容轉換為帶有標簽

<template><div class="editor-wrapper"><div :id="editorId" class="editor-div"></div></div> </template><script> import Editor from 'wangeditor'; // import 'wangeditor/release/wangEditor.min.css';export default {name: 'Editor',props: {value: {type: String,default: ''},/*** 綁定的值的類型, enum: ['html']*/valueType: {type: String,default: 'html'},/*** @description 設置change事件觸發時間間隔*/changeInterval: {type: Number,default: 200},/*** @description 是否開啟本地存儲*/cache: {type: Boolean,default: false}},data() {return {};},computed: {editorId() {return `editor${this._uid}`;}},watch: {value(newValue, oldValue) {// console.log(newValue);// 解決頁面第一次加載后獲取的數據無法渲染到富文本的問題this._setHtmlOnce(newValue);}},methods: {setHtml(val) {this.editor.txt.html(val);},setEditorHeight() {let el = document.querySelector('.w-e-text-container');el.style.minHeight = '300px';el.style.height = '';},_setHtmlOnce(val) {if (!this.__setHtmlCount) {this.editor.txt.html(val);this.__setHtmlCount = 1;}}},mounted() {this.editor = new Editor(`#${this.editorId}`);this.editor.customConfig.onchange = html => {let text = this.editor.txt.text();// if (this.cache) localStorage.editorCache = html;this.$emit('input', this.valueType === 'html' ? html : text);this.$emit('on-change', html, text);};this.editor.customConfig.onchangeTimeout = this.changeInterval;this.editor.customConfig.showLinkImg = false;// this.editor.customConfig.uploadImgShowBase64 = true;// create這個方法一定要在所有配置項之后調用this.editor.create();// this.setEditorHeight();// 如果本地有存儲加載本地存儲內容// let html = this.value || localStorage.editorCache;let html = this.value;if (html) this.editor.txt.html(html);} }; </script>

頁面js中直接調用

import Editor from '@/components/editor/index'; export default {components: {Editor},}

頁面上直接渲染

<template><div class="page-Challenge-rule"><Editor v-model="value" /></div> </template>

效果圖

總結

以上是生活随笔為你收集整理的适合vue的富文本框的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。