vue中安裝使用Quill富文字編輯器
阿新 • • 發佈:2019-01-03
1、安裝依賴
npm install vue-quill-editor --save
注:我在已有的vue專案中(含有已安裝的依賴,即node_modules資料夾)直接進行安裝並不成功,報錯,沒有截圖,但是我沒記錯的話是顯示"專案名\node_modules\cliui\node_modules\wordwrap"這個沒有。所以我把專案下的node_modules檔案刪除,然後直接安裝quill依賴(執行npm install vue-quill-editor --save)。然後npm run dev執行專案,不影響之前vue專案的使用和執行,quill的富文字編輯器也可以用了。
2、使用
(1)在“專案名 \src\main.js”引入
import Vue from 'vue'
import VueQuillEditor from 'vue-quill-editor'
//一定要引入這三個css,不然文字編輯器會出現不規則黑白幾何圖形
//這三個css可以在main.js中引入,也可以在具體使用的.vue檔案中引入
import 'quill/dist/quill.core.css'
import 'quill/dist/quill.snow.css'
import 'quill/dist/quill.bubble.css'
Vue.use(VueQuillEditor)
(2)在具體vue檔案中引用
<template> <el-row> <quill-editor v-model="content" :options="editorOption" @blur="onEditorBlur($event)" @focus="onEditorFocus($event)" @change="onEditorChange($event)"> </quill-editor> </el-row> </template>
<script> import { quillEditor } from 'vue-quill-editor' export default { data:function(){ return{ content:'', editorOption:{} } }, methods:{ onEditorBlur(editor){//失去焦點事件 }, onEditorFocus(editor){//獲得焦點事件 }, onEditorChange({editor,html,text}){//編輯器文字發生變化 //this.content可以實時獲取到當前編輯器內的文字內容 console.log(this.content); } } } </script>
v-model 可以不使用,並不是Quill編輯器自帶的,是我專案中使用自己加的。
這樣引入後可以得到一個這樣的編輯器。
如果需要改變文字域部分的高度,如下:
<style>
.quill-editor {
height: 350px;
}
</style>