原文地址

前言

上次在看前端早早聊大会中, 尤大大再一次提到了 VueUse 的一个库。 好奇了一下,点看看了看。好家伙啊, 我直接好家伙。这不就是曾经我也想自己写一个 vue 版的 hooks 库吗?(因为我觉得 vue3 和 hooks 太像了) 可是我还不太会, 你现在直接把我的梦想给破灭了,下面我们一起来看看吧!VueUse 作者 Anthony Fu 分享可组合的 Vue_哔哩哔哩_bilibili

什么是 VueUse

VueUse 是一个基于 Composition API 的实用函数集合。通俗的来说,这就是一个工具函数包,它可以帮助你快速实现一些常见的功能,免得你自己去写,解决重复的工作内容。以及进行了基于 Composition API 的封装。让你在 vue3 中更加得心应手。

简单上手

安装 VueUse

  1. npm i @vueuse/core

使用 VueUse

  1. // 导入
  2. import { useMouse, usePreferredDark, useLocalStorage } from '@vueuse/core'
  3. export default {
  4. setup() {
  5. // tracks mouse position
  6. const { x, y } = useMouse()
  7. // is user prefers dark theme
  8. const isDark = usePreferredDark()
  9. // persist state in localStorage
  10. const store = useLocalStorage(
  11. 'my-storage',
  12. {
  13. name: 'Apple',
  14. color: 'red',
  15. },
  16. )
  17. return { x, y, isDark, store }
  18. }
  19. }

上面从 VueUse 当中导入了三个函数, useMouse, usePreferredDark, useLocalStorage。useMouse 是一个监听当前鼠标坐标的一个方法,他会实时的获取鼠标的当前的位置。usePreferredDark 是一个判断用户是否喜欢深色的方法,他会实时的判断用户是否喜欢深色的主题。useLocalStorage 是一个用来持久化数据的方法,他会把数据持久化到本地存储中。

还有我们熟悉的 防抖节流

  1. import { useThrottle , useDebounce } from '@vueuse/core'
  2. const input = ref('')
  3. const throttled = useThrottle(input, 1000, false) // 延迟1s获取 input 的值
  4. const debounced = useDebounce(input, 1000)
  5. input.value = 'bar'
  6. console.log(debounced.value) // 延迟1s 更新input的值

还有还有在 component 中使用的函数

  1. <script setup>
  2. import { ref } from 'vue'
  3. import { onClickOutside } from '@vueuse/core'
  4. const el = ref()
  5. function close () {
  6. /* ... */
  7. }
  8. onClickOutside(el, close)
  9. </script>
  10. <template>
  11. <div ref="el">
  12. Click Outside of Me
  13. </div>
  14. </template>

上面例子中,使用了 onClickOutside 函数,这个函数会在点击元素外部时触发一个回调函数。也就是这里的 close 函数。在 component 中就是这么使用

  1. <script setup>
  2. import { OnClickOutside } from '@vueuse/components'
  3. function close () {
  4. /* ... */
  5. }
  6. </script>
  7. <template>
  8. <OnClickOutside @trigger="close">
  9. <div>
  10. Click Outside of Me
  11. </div>
  12. </OnClickOutside>
  13. </template>

注意⚠️ 这里的 OnClickOutside 函数是一个组件,不是一个函数。需要package.json 中安装了 @vueuse/components。

还还有全局状态共享的函数

  1. // store.js
  2. import { createGlobalState, useStorage } from '@vueuse/core'
  3. export const useGlobalState = createGlobalState(
  4. () => useStorage('vue-use-local-storage'),
  5. )
  1. // component.js
  2. import { useGlobalState } from './store'
  3. export default defineComponent({
  4. setup() {
  5. const state = useGlobalState()
  6. return { state }
  7. },
  8. })

这样子就是一个简单的状态共享了。扩展一下。传一个参数,就能改变 store 的值了。

还有关于 fetch, 下面👇就是一个简单的请求了。

  1. import { useFetch } from '@vueuse/core'
  2. const { isFetching, error, data } = useFetch(url)

它还有很多的 option 参数,可以自定义。

  1. // 100ms超时
  2. const { data } = useFetch(url, { timeout: 100 })
  1. // 请求拦截
  2. const { data } = useFetch(url, {
  3. async beforeFetch({ url, options, cancel }) {
  4. const myToken = await getMyToken()
  5. if (!myToken)
  6. cancel()
  7. options.headers = {
  8. ...options.headers,
  9. Authorization: `Bearer ${myToken}`,
  10. }
  11. return {
  12. options
  13. }
  14. }
  15. })
  1. // 响应拦截
  2. const { data } = useFetch(url, {
  3. afterFetch(ctx) {
  4. if (ctx.data.title === 'HxH')
  5. ctx.data.title = 'Hunter x Hunter' // Modifies the resposne data
  6. return ctx
  7. },
  8. })