vue-quill-editor富文本编辑器,带鼠标移入提示,带自定义颜色选择器
vue-quill-editor富文本编辑器,带鼠标移入提示,带自定义颜色选择器
·
第一步,安装插件
npm install quill --save
npm install vue-quill-editor --save
第二步组件中使用
<template>
<div>
<quill-editor ref="myQuillEditor" v-model="content" class="editor" :options="editorOption" />
</div>
</template>
<script>
import { quillEditor } from 'vue-quill-editor'
// 引入样式
import Quill from 'quill'
import 'quill/dist/quill.core.css'
import 'quill/dist/quill.snow.css'
import 'quill/dist/quill.bubble.css'
// 引入富文本编辑器配置文件
import quillOption from '@/components/quillOption.js'
export default {
components: {
quillEditor, Quill
},
data() {
return {
content: '',
editorOption: {
placeholder: '请在这里输入',
theme: 'snow', // 主题 snow/bubble
modules: {
history: {
delay: 1000,
maxStack: 50,
userOnly: false
},
toolbar: {
container: quillOption.toolbarOptions
}
}
}
}
},
mounted() {
this.addQuillTitle()
// 自定义颜色选择器一 任选一种
this.$refs.myQuillEditor.quill.getModule('toolbar').addHandler('color', (value) => {
// if the user clicked the custom-color option, show a prompt window to get the color
if (value === 'custom-color') {
value = prompt('请输入十六进制的颜色')
if (!/^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$/.test(value)) {
alert('请输入合法的十六进制颜色')
value = ''
}
}
this.$refs.myQuillEditor.quill.format('color', value)
})
// 自定义颜色选择器二
this.$refs.myQuillEditor.quill
.getModule('toolbar')
.addHandler('color', (value) => {
// if the user clicked the custom-color option, show a prompt window to get the color
if (value === 'custom-color') {
var picker = document.getElementById('custom-color')
if (!picker) {
picker = document.createElement('input')
picker.id = 'custom-color'
picker.type = 'color'
picker.style.display = 'none'
picker.value = '#FF0000'
document.body.appendChild(picker)
picker.addEventListener(
'change',
() => {
this.$refs.QuillEditor.quill.format('color', picker.value)
}
)
}
picker.click()
} else {
this.$refs.myQuillEditor.quill.format('color', value)
}
})
},
methods: {
// 提示信息
addQuillTitle() {
document.getElementsByClassName('ql-editor')[0].dataset.placeholder = ''
for (const item of quillOption.titleConfig) {
const tip = document.querySelector('.quill-editor ' + item.Choice)
if (!tip) continue
tip.setAttribute('title', item.title)
}
}
}
}
</script>
<style lang="scss" scoped>
.editor {
height: 300px !important;
}
.ql-color .ql-picker-options [data-value='custom-color'] {
background: none !important;
width: 100% !important;
height: 20px !important;
text-align: center;
}
.ql-color .ql-picker-options [data-value='custom-color']:before {
content: 'Custom Color';
}
.ql-color .ql-picker-options [data-value='custom-color']:hover {
border-color: transparent !important;
}
</style>
第三步,配置文件
// 新建components/quillOption.js富文本编辑器配置文件
const quillOption = {
toolbarOptionns: [
["bold", "italic", "underline", "strike"],//加粗 斜体 下划线 删除线
["blockquote", "code-block"],//引用 代码块
[{ header: 1 }, { header: 2 }],//1、2 级标题
[{ list: "ordered" }, { list: "bullet" }],//有序、无序列表
[{ script: "sub" }, { script: "super" }],//上标/下标
[{ indent: "-1" }, { indent: "+1" }],//缩进
//[{'direction': 'rtl'}], // 文本方向
[{ size: ["12px", "14px","16px","18px","20px","24px","28px","32px"] }],//字体大小
[{ header: [1, 2, 3, 4, 5, 6, false] }],//标题
[{ color: ["#000000", "#e60000", "#ff9900", "#ffff00", "#008a00", "#0066cc", "#9933ff", "#ffffff", "#facccc", "#ffebcc", "#ffffcc", "#cce8cc", "#cce0f5", "#ebd6ff", "#bbbbbb", "#f06666", "#ffc266", "#ffff66", "#66b966", "#66a3e0", "#c285ff", "#888888", "#a10000", "#b26b00", "#b2b200", "#006100", "#0047b2", "#6b24b2", "#444444", "#5c0000", "#663d00", "#666600", "#003700", "#002966", "#3d1466", 'custom-color'] }, { background: [] }],//字体颜色、字体背景颜色
[{
font: ["Microsoft-YaHei",
"SimSun",
"SimHei",
"KaiTi",
"FangSong",
"Arial",
"Times-New-Roman",
"sans-serif",]
}],//字体种类
[{ align: [] }],//对齐方式
["clean"],//清除文本格式
["link", "image", "video"]//链接、图片、视频
],
titleConfig: [
{ Choice: '.ql-bold', title: '加粗' },
{ Choice: '.ql-italic', title: '斜体' },
{ Choice: '.ql-underline', title: '下划线' },
{ Choice: '.ql-header', title: '段落格式' },
{ Choice: '.ql-strike', title: '删除线' },
{ Choice: '.ql-blockquote', title: '块引用' },
{ Choice: '.ql-code', title: '插入代码' },
{ Choice: '.ql-code-block', title: '插入代码段' },
{ Choice: '.ql-font', title: '字体' },
{ Choice: '.ql-size', title: '字体大小' },
{ Choice: '.ql-list[value="ordered"]', title: '编号列表' },
{ Choice: '.ql-list[value="bullet"]', title: '项目列表' },
{ Choice: '.ql-direction', title: '文本方向' },
{ Choice: '.ql-header[value="1"]', title: 'h1标题' },
{ Choice: '.ql-header[value="2"]', title: 'h2标题' },
{ Choice: '.ql-align', title: '对齐方式' },
{ Choice: '.ql-color', title: '字体颜色' },
{ Choice: '.ql-background', title: '背景颜色' },
{ Choice: '.ql-image', title: '图像' },
{ Choice: '.ql-video', title: '视频' },
{ Choice: '.ql-link', title: '添加链接' },
{ Choice: '.ql-formula', title: '插入公式' },
{ Choice: '.ql-clean', title: '清除字体格式' },
{ Choice: '.ql-script[value="sub"]', title: '下标' },
{ Choice: '.ql-script[value="super"]', title: '上标' },
{ Choice: '.ql-indent[value="-1"]', title: '向左缩进' },
{ Choice: '.ql-indent[value="+1"]', title: '向右缩进' },
{ Choice: '.ql-header .ql-picker-label', title: '标题大小' },
{ Choice: '.ql-header .ql-picker-item[data-value="1"]', title: '标题一' },
{ Choice: '.ql-header .ql-picker-item[data-value="2"]', title: '标题二' },
{ Choice: '.ql-header .ql-picker-item[data-value="3"]', title: '标题三' },
{ Choice: '.ql-header .ql-picker-item[data-value="4"]', title: '标题四' },
{ Choice: '.ql-header .ql-picker-item[data-value="5"]', title: '标题五' },
{ Choice: '.ql-header .ql-picker-item[data-value="6"]', title: '标题六' },
{ Choice: '.ql-header .ql-picker-item:last-child', title: '标准' },
{ Choice: '.ql-size .ql-picker-item[data-value="small"]', title: '小号' },
{ Choice: '.ql-size .ql-picker-item[data-value="large"]', title: '大号' },
{ Choice: '.ql-size .ql-picker-item[data-value="huge"]', title: '超大号' },
{ Choice: '.ql-size .ql-picker-item:nth-child(2)', title: '标准' },
{ Choice: '.ql-align .ql-picker-item:first-child', title: '居左对齐' },
{ Choice: '.ql-align .ql-picker-item[data-value="center"]', title: '居中对齐' },
{ Choice: '.ql-align .ql-picker-item[data-value="right"]', title: '居右对齐' },
{ Choice: '.ql-align .ql-picker-item[data-value="justify"]', title: '两端对齐' }
]
}
export default quillOption
更多推荐
已为社区贡献6条内容
所有评论(0)