[Vuejs]-Unable to access data in props

0👍

It seems that the data wasn’t loaded when I try to mounted(). Using a watcher before the mounted made it work.

watch: { gamedata(){ this.getData()} }, 
mounted() {
  this.series = this.populate();
}

Leave a comment