0👍
✅
assuming TryCatch(cb)
is something along the lines of
function TryCatch(cb){ let x = null; try { x = cb() } catch(e) {} return x; }
you loose 2 important things:
this
(you could bind it viacb.call(this)
)- utterly usefull error messages
furher points:
I have checked in the console
checkout the excellent browser plugin for ff and chrome vue-devtools
itemPriceList = []
you initalize itemPriceList
as array, use it as array item in itemPriceList
, but also use it as object {{ itemPriceList.Name }}
– what shall it be ?
Source:stackexchange.com