我如何才可以通过toRef创建对象多层级属性的refc对象
What problem does this feature solve?
以以下对象为例
const refroot={ name:"root",children:{name:"children"} }
我现在想要 cons refch=toRef(refoot,"children.name") 测试发现是不行的。我又尝试
const refdata=toRef(refoot,"chidren")
const rech=toRef(refdata,"name") 也是不行的。
因为我的应用场景对象的属性路径是不确定的,需要动态进行绑定,请问一下有什么办法解决这个问题。
What does the proposed API look like?
const refroot={ name:"root",children:{name:"children"} } cons refch=toRef(refoot,"children.name") 可以正常数据绑定