Quill Editor
We have added the support for the famous Quill editor for Pages angular. Please refer there documentation here https://github.com/KillerCodeMonkey/ngx-quill
First import it to your app module or any submodule as you wish
import { QuillModule } from 'ngx-quill'
@NgModule({
imports: [QuillModule,...]
})
export class AppModule(){}
Basic Select with Search
HTML
<quill-editor [style]="{height: '350px'}" placeholder="" ></quill-editor>
Last modified 5yr ago