网站首页 站内搜索

搜索结果

查询Tags标签: RefImpl,共有 2条记录
  • [Vue]Vue3 中的 ref 和 reactive 有什么区别

    区别 先来看看 ref 创建的数据和 reactive 创建的数据返回的类型是什么? console.log(ref({value: 0})) // => RefImpl console.log(reactive({value: 0}) // => Proxyref 返回的是 RefImpl,而 ref 的 RefImpl._value(可以通过控制台打印查看到RefImpl内的_value…

    2021/10/17 6:11:33 人评论 次浏览
  • [Vue]Vue3 中的 ref 和 reactive 有什么区别

    区别 先来看看 ref 创建的数据和 reactive 创建的数据返回的类型是什么? console.log(ref({value: 0})) // => RefImpl console.log(reactive({value: 0}) // => Proxyref 返回的是 RefImpl,而 ref 的 RefImpl._value(可以通过控制台打印查看到RefImpl内的_value…

    2021/10/17 6:11:33 人评论 次浏览
扫一扫关注最新编程教程