ЮБ

Size: a a a
ЮБ
AS
AS
S
AS
S
PT
newVM: AddVMProperty;
export class AddVMProperty {
kind: string;
value: string
}
openDialog() {
const dialogRef = this.dialog.open( PopupAddVMComponent, {
data: { kind: this.newVM.kind, value: this.newVM.value }
});
dialogRef.afterClosed().subscribe(result => {
this.newVM = result;
console.log(this.newVM);
});
}
VH
newVM: AddVMProperty;
export class AddVMProperty {
kind: string;
value: string
}
openDialog() {
const dialogRef = this.dialog.open( PopupAddVMComponent, {
data: { kind: this.newVM.kind, value: this.newVM.value }
});
dialogRef.afterClosed().subscribe(result => {
this.newVM = result;
console.log(this.newVM);
});
}
DK
S
DK
S
DK
S
DK
AL
SK
J
AP
R