[Vuejs]-Not able to access data variable in script but can in html

0👍

✅

You have a typo in a variable name inside mounted hook – used with capital I.

In data: itemPriceList
In mounted hook: this.ItemPriceList

Should be the same as defined inside data property.

Leave a comment