Vue Composition API 异步数据请求的 Hook 库

核心特性

快速上手

安装

npm i vue-use-api

使用

import { useRequest } from "vue-use-api"

// 直接传递 URL
const { data, loading, error } = useRequest('url')

// 传递 Promise,如 axios
useRequest(axios.get('url'))

更多功能

手动触发请求

const { run } = useRequest('url', {
  manual: true,
})

run()

主动取消请求