Get started with angular-wysiwyg CDN

MIT licensed

Angular library: WYSIWYG editor implementation.

Tags:
  • angularjs
  • wysiwyg

Stable version

Copied!

How to start using angular-wysiwyg CDN


import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AngularWysiwygModule } from 'angular-wysiwyg';

import { AppComponent } from './app.component';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    AngularWysiwygModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }
Copied!
Copied!

All versions