[Vuejs]-Trying to GET data from application with Vue and Axios

0👍

This solution has worked for me:

const config = {
  'Content-Type': 'application/json',
  "Accept": "application/json",
}
const { data } = await axios({ url: 'http://192.168.170.*****/', method: 'GET', data: null, withCredentials: true, headers: config })

Leave a comment