angular_quill

Creator: coderz1093

Last updated:

Add to Cart

Description:

angular quill

Angular Quill #
An angular dart component for the Quill rich text editor
See it in action #
Visit https://adamlofts.github.io/angular_quill_example/build/web/index.html
And view the corresponding example source code.
Usage #
Add the dependency to pub:
dependencies:
angular_quill:
copied to clipboard
Add the component to your template
<my-app>
<quill
[(ngModel)]="html"
placeholder="Write something..."
(blur)="blur()"
(input)="input()"
></quill>
</my-app>

copied to clipboard
Add quillDirectives to the directives on your app component
@Component(
selector: 'my-app',
templateUrl: 'app_component.html',
directives: const [COMMON_DIRECTIVES, quillDirectives],
)
class AppComponent {}

copied to clipboard
Include Quill JS and css files in your app html.
<head>
<script src="packages/angular_quill/quill-1.3.6/quill.min.js"></script>
<link rel="stylesheet" href="packages/angular_quill/quill-1.3.6/quill.snow.css">
</head>
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.