vue-resource-dao
v1.0.18
Published
This library is not stable yet. There's an extending problem for Dao class. But Dao class is usable for direct construction.
Downloads
19
Maintainers
Readme
vue-resource-dao
This library is not stable yet. There's an extending problem for Dao class. But Dao class is usable for direct construction.
Usage
new Dao(url, {
requestMethod: "POST",
headers: {
authorization: "Bearer [TOKEN]"
},
params: {
some: "query string"
},
body: {
username,
password
}
})
.execute()
.then(result => console.log(result))
.catch(error => console.log(error))