update docs

This commit is contained in:
Çetin 2021-12-24 17:29:51 +03:00
parent da71e2bd27
commit 0307bc0ee7
2 changed files with 10 additions and 6 deletions

View File

@ -30,10 +30,9 @@ export class AppMenuComponent implements OnInit {
this.model = [ this.model = [
{ {
label: 'Home', label: 'Home',
items:[{ items:[
label: 'Dashboard', {label: 'Dashboard',icon: 'pi pi-fw pi-home', routerLink: ['/']}
icon: 'pi pi-fw pi-home', routerLink: ['/'] ]
}]
}, },
{ {
label: 'UI Components', label: 'UI Components',

View File

@ -105,9 +105,14 @@ export class AppMenuComponent implements OnInit, AfterViewInit {
ngOnInit() { ngOnInit() {
this.model = [ this.model = [
{label: 'Dashboard', icon: 'pi pi-home', routerLink: ['/']},
{ {
label: 'UI Kit', icon: 'pi pi-star', routerLink: ['/uikit'], label: 'Home',
items: [
{label: 'Dashboard', icon: 'pi pi-fw pi-home', routerLink: ['/']}
]
},
{
label: 'UI Kit',
items: [ items: [
{label: 'Form Layout', icon: 'pi pi-fw pi-id-card', routerLink: ['/uikit/formlayout']}, {label: 'Form Layout', icon: 'pi pi-fw pi-id-card', routerLink: ['/uikit/formlayout']},
{label: 'Input', icon: 'pi pi-fw pi-check-square', routerLink: ['/uikit/input']}, {label: 'Input', icon: 'pi pi-fw pi-check-square', routerLink: ['/uikit/input']},