@x-kit/ajo
v0.1.8
Published
Kit of ajax, based on axios.
Downloads
3
Readme
@x-kit/ajo
Kit of ajax, based on axios.
Usage
import { $get } from '@x-kit/ajo';
$get('https://xxx', options).then((x) => {
console.log(x);
}).catch((e) => {
console.log('e', e);
});
Configuration
options
const options = {
method,
norest,
data,
};