码迷,mamicode.com
首页 > 其他好文 > 详细

Vue给quill-editor组件中的工具栏添加title

时间:2020-09-15 21:07:48      阅读:36      评论:0      收藏:0      [点我收藏+]

标签:tor   false   import   ref   idt   而且   mount   下标   under   

前言:quill-editor组件中的工具栏都是英文,而且最难受的时没有title提示,要怎样给他添加title,并且是中文的title提示呢?

一、创建一个quill-title.js文件

①、在其中插入以下代码

const titleConfig = {
  ‘ql-bold‘:‘加粗‘,
  ‘ql-color‘:‘颜色‘,
  ‘ql-font‘:‘字体‘,
  ‘ql-code‘:‘插入代码‘,
  ‘ql-italic‘:‘斜体‘,
  ‘ql-link‘:‘添加链接‘,
  ‘ql-background‘:‘背景颜色‘,
  ‘ql-size‘:‘字体大小‘,
  ‘ql-strike‘:‘删除线‘,
  ‘ql-script‘:‘上标/下标‘,
  ‘ql-underline‘:‘下划线‘,
  ‘ql-blockquote‘:‘引用‘,
  ‘ql-header‘:‘标题‘,
  ‘ql-indent‘:‘缩进‘,
  ‘ql-list‘:‘列表‘,
  ‘ql-align‘:‘文本对齐‘,
  ‘ql-direction‘:‘文本方向‘,
  ‘ql-code-block‘:‘代码块‘,
  ‘ql-formula‘:‘公式‘,
  ‘ql-image‘:‘图片‘,
  ‘ql-video‘:‘视频‘,
  ‘ql-clean‘:‘清除字体样式‘
};
 
export function addQuillTitle(){
  const oToolBar = document.querySelector(‘.ql-toolbar‘),
        aButton = oToolBar.querySelectorAll(‘button‘),
        aSelect =  oToolBar.querySelectorAll(‘select‘);
  aButton.forEach(function(item){
    if(item.className === ‘ql-script‘){
      item.value === ‘sub‘ ? item.title = ‘下标‘: item.title = ‘上标‘;
    }else if(item.className === ‘ql-indent‘){
      item.value === ‘+1‘ ? item.title =‘向右缩进‘: item.title =‘向左缩进‘;
    }else{
      item.title = titleConfig[item.classList[0]];
    }
  });
  aSelect.forEach(function(item){
    item.parentNode.title = titleConfig[item.classList[0]];
  });
}

  

②、在页面中应用

<template>
  <quill-editor  v-model="content" >
  </quill-editor>
</template>
 
<script>
 
  import { quillEditor } from ‘vue-quill-editor‘
  import { addQuillTitle } from ‘./quill-title.js‘
 
  export default {
    components: {
      quillEditor
    },
    mounted(){
      addQuillTitle();
    },
    data() {
      return {
        content: ‘<h2>freddy</h2>‘,
      }
    }
  }
</script>

  

③、运行结果

技术图片

像这样鼠标移入的时候就会显示title了。

原文地址:https://blog.csdn.net/w390058785/article/details/84346251

Vue给quill-editor组件中的工具栏添加title

标签:tor   false   import   ref   idt   而且   mount   下标   under   

原文地址:https://www.cnblogs.com/zhouwan/p/13599943.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!