0

I'm using ngx-quill for integrating quill.js in my project as mentioned on this link.

https://www.npmjs.com/package/ngx-quill

<quill-editor></quill-editor>

Using this tag I get the editor and toolbar but I want to add image button on the toolbar as well.

zgue
  • 3,793
  • 9
  • 34
  • 39
harshit raghav
  • 593
  • 2
  • 9
  • 23

1 Answers1

1

I managed to add image option in my toolbar using the quill-editor-toolbar.

<div quill-editor-toolbar>
 <span class="ql-formats">
  <button class="ql-image" [title]="'Image'"></button>
 </span>
</div>

I wrapped this inside <quill-editor>

harshit raghav
  • 593
  • 2
  • 9
  • 23