this.vendorService.getCities(e.id)
.then((d) => {
this.cityList = d.info;
}
});
when I check this.cityList in breakpoints it throw error but in console.log(this.cityList) it works fine .
I am using Angular-cli
Uncaught TypeError: Cannot read property 'cityList' of undefined