1.0.1 • Published 11 months ago

sun-http v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
11 months ago

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
1.0.1

11 months ago

1.0.0

11 months ago