vue-text-editor
A Vue.js project for quill-editor. leezng/vue-text-editor
Installation
npm install vue-text-editor
Usage in entry
Vue
Props
Attribute | Description | Type | Default |
---|---|---|---|
value | binding value | string | - |
config | navbar items | array | - |
Here is the default config:
allConfig = 'justifyLeft' 'justifyCenter' 'justifyRight' 'italic' 'bold' 'foreColor' 'backColor' 'fontName' 'fontSize' 'superscript' 'subscript' 'underline' 'strikeThrough' 'indent' 'outdent'
Events
Event Name | Description | Parameters |
---|---|---|
change | emit when value has changed | newValue |
Then in your vue template somewhere:
...