import axios from 'axios' export const plugins = [ store => { store.http = axios }] export const actions = { async nuxtServerInit ({dispatch, commit}, {req, redirect}) { this.http = this.http.create({ baseURL: 'http://localhost:8080', headers: { 'Cookie': req.headers.cookie } }) } }
Обсуждают сегодня