请问老师 toRefs 在tsx语法中应该如何使用...展开
来源:3-8 更近一步 - reactive
2017软件技术1班李艳玲
2020-11-27
写回答
2回答
-
同学你好 ref 对象在 TSX 写法中,不能省略 value 属性。你应该写成。
const test = ref(0) return () => { return ( <h1> Hello World { test.value }</h1> ) }
122020-12-01 -
2017软件技术1班李艳玲
提问者
2020-11-27
老师 我已经改写成这样了 解构还是不行
112021-08-24
相似问题