1. 程式人生 > 程式設計 >Vue 實現對quill-editor元件中的工具欄新增title

Vue 實現對quill-editor元件中的工具欄新增title

前言: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>

③、執行結果

Vue 實現對quill-editor元件中的工具欄新增title

像這樣滑鼠移入的時候就會顯示title了。

補充知識:自定義設定vue-quill-editor toolbar的title屬性

直接看程式碼吧~

const titleConfig = {
 'ql-bold':'加粗','ql-color':'字型顏色','ql-clean':'清除字型樣式'
};

export function addQuillTitle(){
 const oToolBar = document.querySelector('.ql-toolbar'),aSelect = oToolBar.querySelectorAll('select'),aSpan= oToolBar.querySelectorAll('span');
 aButton.forEach((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 if(item.className === 'ql-list'){
	 item.value==='ordered' ? item.title='有序列表' : item.title='無序列表'
	}else if(item.className === 'ql-header'){
	 item.value === '1' ? item.title = '標題H1': item.title = '標題H2';
	}else{
   item.title = titleConfig[item.classList[0]];
  }
 });
 aSelect.forEach((item)=>{
  if(item.className!='ql-color'&&item.className!='ql-background'){
   item.parentNode.title = titleConfig[item.classList[0]];
  }
 });
 aSpan.forEach((item)=>{
  if(item.classList[0]==='ql-color'){
   item.title = titleConfig[item.classList[0]];
  }else if(item.classList[0]==='ql-background'){
   item.title = titleConfig[item.classList[0]];
  }
 });
}

//how to use
//import { addQuillTitle } from './set-quill-title.js'
//addQuillTitle();   --use in mouted
//自定義 set title

以上這篇Vue 實現對quill-editor元件中的工具欄新增title就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支援我們。