vue-quill-editor 编辑一段文字 格式
时间: 2024-11-19 21:12:31 浏览: 12
vue3.0 vue-quill-editor.rar
Vue-quill-editor是一个基于Quill库的富文本编辑器插件,它允许你在Vue.js应用中轻松地添加富文本编辑功能。使用这个组件,用户可以编辑包含格式如字体、颜色、段落、列表、链接等元素的内容。
例如,你可以像下面这样在Vue模板中集成并使用它:
```html
<template>
<vue-quill-editor :value="content" v-model="content" :options="quillOptions"></vue-quill-editor>
</template>
<script>
import VueQuillEditor from 'vue-quill-editor';
export default {
components: {
VueQuillEditor,
},
data() {
return {
content: '',
quillOptions: {
modules: { // 自定义模块
toolbar: [
['bold', 'italic', 'underline'],
[{'format': 'blockquote'}, 'code-block'],
[{ 'header': 1 }, { 'header': 2 }], // custom button with dropdown
[{ 'list': 'ordered' }, { 'list': 'bullet' }],
[{ 'indent': '-1' }, { 'indent': '+1' }], // outdent/indent
[{ 'direction': 'rtl' }], // text direction
[{ 'size': ['small', false, 'large', 'huge'] }], // custom dropdown
[{ 'color': [] }, { 'background': [] }], // dropdown with defaults from theme
],
},
theme: 'snow', // or 'bubble'
},
};
},
};
</script>
```
在这个例子中,`content`属性用于存储编辑内容,`quillOptions`对象定义了编辑器的配置,包括工具栏、主题等。用户在富文本框内输入的文字会受到这些设置的影响。
阅读全文