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)
})
Source:stackexchange.com