vue quill editor
1.0.0
VUE(2)的Quill Editor组件。
不幸的是,由于Quill项目已有效地停止了维护, vue-quill-editor将被弃用,并且将不再支持Vue3;如果您正在寻找丰富的文本编辑器,我建议迁移到Tiptap ,这是更好的选择。
如果Quill曾经更新v2.0,则此项目可能会继续更新。我鼓励人们分叉这个存储库,如果叉子很受欢迎,我将在此读书中链接到它。
在这些问题中可以找到停滞的鹅毛笔项目:
NPM
npm install vue-quill-editor --saveyarn add vue-quill-editorCDN
< link rel =" stylesheet " href =" path/to/quill.core.css " />
< link rel =" stylesheet " href =" path/to/quill.snow.css " />
< link rel =" stylesheet " href =" path/to/quill.bubble.css " />
< script type =" text/javascript " src =" path/to/quill.js " > </ script >
< script type =" text/javascript " src =" path/to/vue.min.js " > </ script >
< script type =" text/javascript " src =" path/to/dist/vue-quill-editor.js " > </ script >
< script type =" text/javascript " >
Vue . use ( window . VueQuillEditor )
</ script >全局组件
import Vue from 'vue'
import VueQuillEditor from 'vue-quill-editor'
import 'quill/dist/quill.core.css' // import styles
import 'quill/dist/quill.snow.css' // for snow theme
import 'quill/dist/quill.bubble.css' // for bubble theme
Vue . use ( VueQuillEditor , /* { default global options } */ ) import 'quill/dist/quill.core.css'
import 'quill/dist/quill.snow.css'
import 'quill/dist/quill.bubble.css'
import { quillEditor } from 'vue-quill-editor'
export default {
components : {
quillEditor
}
}SSR组件
请参阅NUXT.JS示例代码。
import Quill from 'quill'
import yourQuillModule from '../yourModulePath/yourQuillModule.js'
Quill . register ( 'modules/yourQuillModule' , yourQuillModule )
// Vue app...< template >
<!-- Two-way Data-Binding -->
< quill-editor
ref = " myQuillEditor "
v-model = " content "
:options = " editorOption "
@blur = " onEditorBlur($event) "
@focus = " onEditorFocus($event) "
@ready = " onEditorReady($event) "
/>
<!-- Or manually control the data synchronization -->
< quill-editor
:content = " content "
:options = " editorOption "
@change = " onEditorChange($event) "
/>
</ template >
< script >
// You can also register Quill modules in the component
import Quill from ' quill '
import someModule from ' ../yourModulePath/someQuillModule.js '
Quill . register ( ' modules/someModule ' , someModule)
export default {
data () {
return {
content : ' <h2>I am Example</h2> ' ,
editorOption : {
// Some Quill options...
}
}
},
methods : {
onEditorBlur ( quill ) {
console . log ( ' editor blur! ' , quill)
},
onEditorFocus ( quill ) {
console . log ( ' editor focus! ' , quill)
},
onEditorReady ( quill ) {
console . log ( ' editor ready! ' , quill)
},
onEditorChange ({ quill, html, text }) {
console . log ( ' editor change! ' , quill, html, text)
this . content = html
}
},
computed : {
editor () {
return this . $refs . myQuillEditor . quill
}
},
mounted () {
console . log ( ' this is current quill instance object ' , this . editor )
}
}
</ script >每个版本的详细更改记录在发行说明中。
根据MIT许可获得许可。