0.0.3 • Published 7 years ago

lee-http v0.0.3

Weekly downloads
2
License
ISC
Repository
github
Last release
7 years ago

lee-http

此插件主要是在 VUE 中使用对 axios 的封装

特性

支持 Promise 支持 async await

安装

npm i lee-http --save

OR

yarn add lee-http

使用方法

支持 get 和 post 请求

在 main.js 中

import Http from 'lee-http'; Vue.prototype.Http = Http;

get

async getDate() {
    let d = await this.Http.get(url,{params1:1});
    console.log(d);
}

post

async getDate() {
    let d = await this.post(url,{params1:1});
    console.log(d);
}
0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago