vue富文本编辑器段落
时间: 2023-06-28 12:15:30 浏览: 145
vue中使用ueditor富文本编辑器
5星 · 资源好评率100%
Vue有很多富文本编辑器插件可以使用,其中一些插件支持段落功能。以下是使用vue-quill-editor插件实现段落的示例代码:
```html
<template>
<div>
<quill-editor v-model="content" :options="editorOption"></quill-editor>
</div>
</template>
<script>
import { quillEditor } from 'vue-quill-editor'
export default {
components: {
quillEditor,
},
data() {
return {
content: '',
editorOption: {
modules: {
toolbar: [['bold', 'italic', 'underline', 'strike'], ['blockquote', 'code-block'], [{ 'header': 1 }, { 'header': 2 }], [{ 'list': 'ordered' }, { 'list': 'bullet' }], [{ 'script': 'sub' }, { 'script': 'super' }], [{ 'indent': '-1' }, { 'indent': '+1' }], [{ 'direction': 'rtl' }], [{ 'size': ['small', false, 'large', 'huge'] }], [{ 'header': [1, 2, 3, 4, 5, 6, false] }], [{ 'color': [] }, { 'background': [] }], [{ 'font': [] }], [{ 'align': [] }], ['clean'], ['link', 'image', 'video'],
],
placeholder: '请输入内容',
theme: 'snow',
},
}
},
}
</script>
```
在上面的示例代码中,我们使用了vue-quill-editor插件,并且设置了一些编辑器的选项,包括toolbar、placeholder和theme等。toolbar选项中包含了各种编辑器功能按钮,例如bold、italic、underline、strike等,以及header和list等用于实现段落的功能按钮。在这个示例中,我们使用了header和list按钮,分别用来设置文本的标题和段落。
阅读全文