vue 3 computed 使用异步函数,使用computed

2023-04-25  本文已影响0人  冰落寞成

用于computed 计算一个异步函数的返回值

computed 不支持。可以使用computedAsync[https://vueuse.org/core/computedAsync/]

import { ref } from 'vue'
import { computedAsync } from '@vueuse/core'

const name = ref('jack')

const userInfo = computedAsync(
  async () => {
    return await mockLookUp(name.value)
  },
  null, // initial state
)
上一篇下一篇

猜你喜欢

热点阅读