Subscribe on changes!

在computed 中使用 inject 没效果

avatar
Jan 12th 2022

Version

3.2.26

Reproduction link

codesandbox.io

Steps to reproduce

在setup函数里面通过 computed 使用 inject 的值,计算属性不起重用,不知道是不是我使用有问题。 但是watch能监听到值的变化。

What is expected?

修改后的值 应该为 Yoo

avatar
Jan 12th 2022

ref 定义的变量在 computed 中要带在value ``

let user = ref('');
let name = computed(()=>{
    return user.value;
})

我知道问题了。对不起,打扰了