[Vuejs]-Vue.js and data storing in text/script files

0👍

Make an HTTP request to get the static data from your server using Axios or fetch.

axios.get('/data/tweets.json').then((res) => {
  // bind your data in Vue
  this.tweets = JSON.parse(res.data)
})

Leave a comment