Get started with ng-quill CDN

MIT licensed

Ng-Quill is a Angular library for the Quill WYSIWYG editor.

Tags:
  • editor
  • rich text
  • wysiwyg
  • angular
  • directive

Stable version

Copied!

How to start using ng-quill CDN


import { Component } from '@angular/core';

@Component({
  selector: 'app-quill-example',
  template: `
    <div class="container">
      <quill-editor [content]="content" (contentChanged)="onContentChanged($event)"></quill-editor>
    </div>
  `,
})
export class QuillExampleComponent {
  content = '<p>This is the initial content of the Quill editor.</p>';

  onContentChanged(event: any) {
    this.content = event;
  }
}
Copied!
Copied!
Copied!

All versions