easy-axios

easy-axios

Usage no npm install needed!

<script type="module">
  import easyAxios from 'https://cdn.skypack.dev/easy-axios';
</script>

README

easy-axios

使用

import axios from 'easy-axios';

async function getData () {
    const res = await axios.get({
        url: 'http://xxx'
    });

    return res;
}