Get started with angular-wysiwyg CDN
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!