mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-20 17:30:14 +01:00
feat(app\pages): add editor page and ckeditor
This commit is contained in:
parent
9af0e22650
commit
dbbac18846
10 changed files with 75 additions and 1 deletions
22
src/app/pages/editors/editors.component.ts
Normal file
22
src/app/pages/editors/editors.component.ts
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
import {Component} from '@angular/core';
|
||||
import {RouteConfig} from '@angular/router-deprecated';
|
||||
|
||||
import {Ckeditor} from "./components/ckeditor";
|
||||
|
||||
@Component({
|
||||
selector: 'editors',
|
||||
template: `<router-outlet></router-outlet>`
|
||||
})
|
||||
|
||||
@RouteConfig([
|
||||
{
|
||||
name: 'Ckeditor',
|
||||
component: Ckeditor,
|
||||
path: '/ckeditor',
|
||||
useAsDefault: true
|
||||
}
|
||||
])
|
||||
export class Editors {
|
||||
constructor() {
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue