Editor

Adding Editor in your project

There following steps to add Editor

  • First of all, you have to edit in app.module file ,which is located in your-project-name\src\app folder.

  • Import following files in app.module file

    import { EditorComponent}  from './editor/wysiwyg-editor/editor.component';
  • Now open app-routing.module.ts file and import this file.

    import { EditorComponent}  from './editor/wysiwyg-editor/editor.component';

    After this,add following in routes

     { path: 'editor/wysiwyg', component: EditorComponent }

Last updated