English | 简体中文
VueRequest
Features
- 🚀 All data is reactive
- 🔄 Interval polling
- 🤖 Automatic error retry
- 🗄 Built-in cache
- 📠 Written in TypeScript
- 🍃 Lightweight
- 📦 Out of the box
- 🔥 Interactive docs
Documentation
Install
npm install vue-request
yarn add vue-request
CDN
<script src="https://unpkg.com/vue-request"></script>
It will be exposed to global as window.VueRequest.useRequest
Usage
import { useRequest } from 'vue-request';
export default {
setup() {
const { data } = useRequest('api/user');
return () => <div>{data.value}</div>;
},
};
TODO List
If you have any cool features, please submit an issue for discussion
Thanks
Thank them for inspiring us.
License
MIT License © 2020-present AttoJS