feat(app\pages): add editor page and ckeditor

This commit is contained in:
tibing 2016-06-30 14:21:06 +03:00
parent 9af0e22650
commit dbbac18846
10 changed files with 75 additions and 1 deletions

View 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() {
}
}