projects/wms-framework/src/lib/basecomponentmodel/test/test-app-wrapper.component.ts
selector | wm-test-app |
templateUrl | ./test-app-wrapper.component.html |
Properties |
Methods |
constructor()
|
ngOnInit |
ngOnInit()
|
Returns :
void
|
model |
Type : any
|
Default value : {}
|
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'wm-test-app',
templateUrl: './test-app-wrapper.component.html',
})
export class TestAppWrapperComponent implements OnInit {
model: any = {};
constructor() {}
ngOnInit(): void {}
}
<test-app initParams="key1=value,key2=value2"></test-app>