用于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
)
网友评论