如何将CRUD表功能添加到工具栏(QUILL库)

时间:2019-04-08 12:10:14

标签: quill ngx-quill

我已经安装了ngx-quill,使用npm install进行了安装。我想知道如何像这样的代码笔向工具栏添加表格功能 https://codepen.io/quill/pen/QxypzX

但是,如果能将其添加为下拉列表,将不胜感激

我尝试将其手动添加到DOM中,但是它并不适用,并且还尝试将其添加到工具栏中,但该按钮出现了,但是我该如何访问此功能。

public config = {
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'],
['table'],      // Inputted table Button

],
};

0 个答案:

没有答案