An open API service indexing awesome lists of open source software.

https://github.com/pengzhanbo/vue-swr


https://github.com/pengzhanbo/vue-swr

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# vue-swr

## Usage

还未发布到 npm。

```ts
import useSWR, { useSWRPreload } from 'vue-swr'

useSWRPreload('/api') // 预加载请求

const { isLoading, data, error } = useSWR('/api')
```