mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-18 00:10:14 +01:00
feat(aio): add a tinyMCE page, update an angular cli to 1.0.1, setup the polyfills
This commit is contained in:
parent
50e68f8780
commit
7ce8d8e1c5
31 changed files with 593 additions and 102 deletions
26
src/app/pages/editors/editors-routing.module.ts
Normal file
26
src/app/pages/editors/editors-routing.module.ts
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
import { NgModule } from '@angular/core';
|
||||
import { Routes, RouterModule } from '@angular/router';
|
||||
|
||||
import { NgxEditorsComponent } from './editors.component';
|
||||
import { NgxTinyMCEComponent, NgxTinyMCEEditorComponent } from './tinyMCE.component';
|
||||
|
||||
const routes: Routes = [
|
||||
{
|
||||
path: '',
|
||||
component: NgxEditorsComponent,
|
||||
children: [
|
||||
{
|
||||
path: 'tinymce',
|
||||
component: NgxTinyMCEComponent,
|
||||
},
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
@NgModule({
|
||||
imports: [RouterModule.forChild(routes)],
|
||||
exports: [RouterModule],
|
||||
})
|
||||
export class NgxEditorsRoutingModule { }
|
||||
|
||||
export const routedComponents = [NgxEditorsComponent, NgxTinyMCEComponent, NgxTinyMCEEditorComponent];
|
||||
Loading…
Add table
Add a link
Reference in a new issue