最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

Vue+Element使用富文本編輯器的示例代碼

來源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 22:32:47
文檔

Vue+Element使用富文本編輯器的示例代碼

Vue+Element使用富文本編輯器的示例代碼:富文本編輯器在任何項(xiàng)目中都會用到,在Element中我們推薦vue-quill-editor組件,現(xiàn)在我就把它提供給大家,希望對大家有用。具體截圖如下: 安裝編輯器組件 具體方法:npm install vue-quill-editor --save 編寫組件 首先我們在component
推薦度:
導(dǎo)讀Vue+Element使用富文本編輯器的示例代碼:富文本編輯器在任何項(xiàng)目中都會用到,在Element中我們推薦vue-quill-editor組件,現(xiàn)在我就把它提供給大家,希望對大家有用。具體截圖如下: 安裝編輯器組件 具體方法:npm install vue-quill-editor --save 編寫組件 首先我們在component

富文本編輯器在任何項(xiàng)目中都會用到,在Element中我們推薦vue-quill-editor組件,現(xiàn)在我就把它提供給大家,希望對大家有用。具體截圖如下:


安裝編輯器組件

具體方法:npm install vue-quill-editor --save

編寫組件

首先我們在components文件夾里創(chuàng)建ue.vue組件,效果圖如下:

組件

<!-- 組件代碼如下 -->
<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加載完成后,放入內(nèi)容。
 });
 },
 methods: {
 getUEContent() { // 獲取內(nèi)容方法
 return this.editor.getContent()
 }
 },
 destroyed() {
 this.editor.destroy();
 }
 }
</script>

在頁面中使用

下面是使用代碼

<template>
 <div>
 <el-row class="warp">
 <el-col :span="24" class="warp-breadcrum">
 <el-breadcrumb separator=">">
 <el-breadcrumb-item :to="{path:'/home'}"><b>首頁</b></el-breadcrumb-item>
 <el-breadcrumb-item :to="{path: '/aboutus/aboutlist'}">關(guān)于我們</el-breadcrumb-item>
 <el-breadcrumb-item>添加關(guān)于我們</el-breadcrumb-item>
 </el-breadcrumb>
 </el-col>
<!--
Form 組件提供了表單驗(yàn)證的功能,只需要通過 rule 屬性傳入約定的驗(yàn)證規(guī)則,并 Form-Item 的 prop 屬性設(shè)置為需校驗(yàn)的字段名即可。具體可以參考官網(wǎng):http://element.eleme.io/#/zh-CN/component/form
-->
 <el-col :span="24" class="warp-main">
 <el-form ref="infoForm" :model="infoForm" :rules="rules" label-width="120px">
 <el-form-item label="標(biāo)題" prop="a_title">
 <el-input v-model="infoForm.a_title"></el-input>
 </el-form-item>

 <el-form-item label="來源" prop="a_source">
 <el-input v-model="infoForm.a_source"></el-input>
 </el-form-item>
<!--使用編輯器
-->
 <el-form-item label="詳細(xì)">
 <div class="edit_container">
 <quill-editor v-model="infoForm.a_content"
 ref="myQuillEditor"
 class="editer"
 :options="editorOption" @ready="onEditorReady($event)">
 </quill-editor>
 </div>
 </el-form-item>

 <el-form-item>
 <el-button type="primary" @click="onSubmit">確認(rèn)提交</el-button>
 </el-form-item>
 </el-form>
 </el-col>


 </el-row>
 </div>
</template>

<script>
 import { quillEditor } from 'vue-quill-editor' //調(diào)用編輯器
 export default {
 data() {
 return {
 infoForm: {
 a_title: '',
 a_source: '',
 a_content:'',
 editorOption: {}
 },
 //表單驗(yàn)證
 rules: {
 a_title: [
 {required: true, message: '請輸入標(biāo)題', trigger: 'blur'}
 ],
 a_content: [
 {required: true, message: '請輸入詳細(xì)內(nèi)容', trigger: 'blur'}
 ]
 },
 }
 },
 computed: {
 editor() {
 return this.$refs.myQuillEditor.quill
 }
 },
 mounted() {
 //初始化
 },
 methods: {
 onEditorReady(editor) {
 },
 onSubmit() {
 //提交
//this.$refs.infoForm.validate,這是表單驗(yàn)證
 this.$refs.infoForm.validate((valid) => {
 if(valid) {
 this.$post('m/add/about/us',this.infoForm).then(res => {
 if(res.errCode == 200) {
 this.$message({
 message: res.errMsg,
 type: 'success'
 });
 this.$router.push('/aboutus/aboutlist');
 } else {
 this.$message({
 message: res.errMsg,
 type:'error'
 });
 }
 });
 }
 });
 }
 },
 components: {
//使用編輯器
 quillEditor
 }
 }
</script>

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

Vue+Element使用富文本編輯器的示例代碼

Vue+Element使用富文本編輯器的示例代碼:富文本編輯器在任何項(xiàng)目中都會用到,在Element中我們推薦vue-quill-editor組件,現(xiàn)在我就把它提供給大家,希望對大家有用。具體截圖如下: 安裝編輯器組件 具體方法:npm install vue-quill-editor --save 編寫組件 首先我們在component
推薦度:
標(biāo)簽: VUE 代碼 Element
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top