I have an array of object called options.
this is my html code
place
Check after making below changes :
// html change
{{item.name}} {{item.price}}
//.ts change
optionsFn() {
console.log(this.gaming);
let item = this.gaming;
this.product_option_value_idOp = item.product_option_value_id;
this.priceOp = item.price;
this.salespriceOp = item.salesprice;
this.quantityOp = item.quantity;
this.skuOp = item.sku;
this.nameOp = item.name;
}