Well I followed the example https://www.youtube.com/watch?v=Sh3_k_QPGzw
I don't get the Quill tool bar as shown in the any of the examples
<div style="text-align:center">
<div class="container-fluid">
<div class="row pt-5">
<div class="col-md-8">
<form [formGroup]="editorForm" (ngsubmit)="onSubmit()">
<div class="form-group">
<label for="editor"><h3>editor</h3></label>
<quill-editor></quill-editor>
</div>
</form>
</div>
I just tried your example:
Result:
It works fine showing all the standard toolbar-items, so make sure you also imported
quill.snow.cssandquill.bubble.cssin your html and
in your
styles.css.If you are using your own custom toolbar container you also need to create the buttons inside it.
From the official docs:
Because the container option is so common, a top level shorthand is also allowed.
The official documentation and some good examples:
Doc on toolbar
Example
Example on Stackblitz
Example on CodePen with custom toolbar-container