Initial Commit ...
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
||||
import { VPageComponent } from 'src/app/views/v-page/v-page.component';
|
||||
|
||||
@Component({
|
||||
selector: 'app-search-profiles',
|
||||
templateUrl: './search-profiles.page.html',
|
||||
styleUrls: ['./search-profiles.page.scss'],
|
||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||
})
|
||||
export class SearchProfilesPage extends VPageComponent {
|
||||
//
|
||||
//#region Props ...
|
||||
hasSide = true;
|
||||
toolbarShowSubTitle = true;
|
||||
showToolbarEndSlot = true;
|
||||
showToolbarContent = false;
|
||||
titleRes = this.AppResourceIDs.search_profiles_page_title;
|
||||
toolbarSubTitle = this.resourceProvider(this.titleRes);
|
||||
//#endregion
|
||||
}
|
||||
Reference in New Issue
Block a user