sun-http
v1.0.1
Published
A simple http plugin
Downloads
4
Readme
sun-http 统一封装请求
介绍
安装方法
npm i -S sun-http
使用方法
import Vue from 'vue'
import { useHttp } from 'sun-http'
const $http = useHttp(
url,
(config) => {
config.headers.token = 'xxxxxx';
return config
},
(response) => {
return response.data
},
(error) => {
console.log(error)
}
)
Vue.prototype.$http = $http