Blame view
src/Services/http.js
255 Bytes
03dcbf0c1
|
1 2 3 4 5 |
import axios from 'axios' import store from '@/store/store' export default () => { return axios.create({ |
ae898ca2b
|
6 |
baseURL:'http://192.168.2.221:3002/v1', |
03dcbf0c1
|
7 8 9 10 11 |
headers: { Authorization: `Bearer ${store.state.token}` } }) } |