[Vuejs]-How to get Data From JSON file using Vue js?

3👍

My guess is that it’s your data. If your response is an object that looks like this (singular user)

{
  user: [...]
}

You’re not likely that you’ll be able to access it with the plural users elf.userData=data.users;

👤Daniel

Leave a comment