mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-18 00:10:14 +01:00
feat(editors): add a ckeditor component page
This commit is contained in:
parent
ef0acbc72b
commit
0fc2b32085
7 changed files with 60 additions and 10 deletions
|
|
@ -3,6 +3,7 @@ import { Routes, RouterModule } from '@angular/router';
|
|||
|
||||
import { NgxEditorsComponent } from './editors.component';
|
||||
import { NgxTinyMCEComponent, NgxTinyMCEEditorComponent } from './tinyMCE.component';
|
||||
import { NgxCKEditorComponent } from './ckeditor.component';
|
||||
|
||||
const routes: Routes = [
|
||||
{
|
||||
|
|
@ -13,6 +14,10 @@ const routes: Routes = [
|
|||
path: 'tinymce',
|
||||
component: NgxTinyMCEComponent,
|
||||
},
|
||||
{
|
||||
path: 'ckeditor',
|
||||
component: NgxCKEditorComponent,
|
||||
},
|
||||
],
|
||||
},
|
||||
];
|
||||
|
|
@ -23,4 +28,9 @@ const routes: Routes = [
|
|||
})
|
||||
export class NgxEditorsRoutingModule { }
|
||||
|
||||
export const routedComponents = [NgxEditorsComponent, NgxTinyMCEComponent, NgxTinyMCEEditorComponent];
|
||||
export const routedComponents = [
|
||||
NgxEditorsComponent,
|
||||
NgxTinyMCEComponent,
|
||||
NgxTinyMCEEditorComponent,
|
||||
NgxCKEditorComponent,
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue