[Vuejs]-How to avoid using the Web context in axios.get

1👍

After importing axios you can set some defaults, one of them being a base url:

import axios from 'axios'
axios.defaults.baseURL = 'http://localhost:8080/vuejs-demo/rest';

Leave a comment