export class App { pageTypeId = ''; pageTypeId2 = ''; pageTypeId3 = ''; constructor(){ this.pageTypes = [ {label: "Standard Page", value: "0bedc229-2280-46fa-b157-bce4f1cddeaa"} ]; } showValue(){ console.log('val: ' + this.pageTypeId); } showValue2(){ console.log('val: ' + this.pageTypeId2); } showValue3(){ console.log('val: ' + this.pageTypeId3); } }