ngx-quill-example
Version:
The demo app for the usage of the [ngx-quill](https://github.com/KillerCodeMonkey/ngx-quill) module. This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 7.1.0.
15 lines (12 loc) • 304 B
text/typescript
import { Component } from '@angular/core'
@Component({
selector: 'app-format-object',
templateUrl: './format-object.component.html'
})
export class FormatObjectComponent {
objectFormat = [
{ insert: 'Hello ' },
{ insert: 'World!', attributes: { bold: true } },
{ insert: '\n' }
]
}