mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-19 17:00:13 +01:00
24 lines
478 B
TypeScript
24 lines
478 B
TypeScript
import {Component, ViewEncapsulation} from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'layouts',
|
|
encapsulation: ViewEncapsulation.None,
|
|
styles: [],
|
|
template: require('./layouts.html'),
|
|
})
|
|
export class Layouts {
|
|
|
|
public defaultPicture = 'assets/img/theme/no-photo.png';
|
|
public profile:any = {
|
|
picture: 'assets/img/app/profile/Nasta.png'
|
|
};
|
|
public uploaderOptions:any = {
|
|
// url: 'http://website.com/upload'
|
|
};
|
|
|
|
constructor() {
|
|
}
|
|
|
|
ngOnInit() {
|
|
}
|
|
}
|