项目作者: Web-ACAD

项目描述 :
Quill editor integration for angular forms
高级语言: TypeScript
项目地址: git://github.com/Web-ACAD/ng-quill.git
创建时间: 2018-05-13T13:10:08Z
项目社区:https://github.com/Web-ACAD/ng-quill

开源协议:MIT License

下载


@webacad/ng-quill"">NPM version
Build Status

WebACAD/Quill

Quill editor integration for angular forms.

Dependencies

Installation

  1. $ npm install --save @webacad/ng-quill

or with yarn

  1. $ yarn add @webacad/ng-quill

Register module

app.module.ts:

  1. import {QuillModule} from '@webacad/ng-quill';
  2. @NgModule({
  3. imports: [
  4. QuillModule,
  5. ],
  6. })
  7. export class AppModule {}

Usage

  1. <wa-quill theme="snow"></wa-quill>

Available options:

  • theme: quill theme options, docs

Using in angular forms

This package implements all the necessary code for angular forms. That means that you can use it just like any other
ordinary form control.