Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. const instance = axios.create({
  2. baseURL: process.env.VUE_APP_BASE_URI,
  3. withCredentials: true
  4. });
  5.  
  6. Vue.prototype.$http = instance;
  7.  
  8. this.$http.get('url')
  9. .then(Response => )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement