originalix / blog-comments

This repo is used to store comments of originalix.github.io
1 stars 0 forks source link

Vue3 源码解析(八):ref 与 computed 原理揭秘 — 李晓的博客 #58

Open originalix opened 3 years ago

originalix commented 3 years ago

https://originalix.github.io/2021/06/13/Vue3-%E6%BA%90%E7%A0%81%E8%A7%A3%E6%9E%90-%E5%85%AB-ref-%E4%B8%8E-computed-%E7%9A%84%E5%8E%9F%E7%90%86%E6%8F%AD%E7%A7%98/

在 Vue3 新推出的响应式 API 中,Ref 系列毫无疑问是使用频率最高的 api 之一,而 computed 计算属性是一个在上一个版本中就非常熟悉的选项了,但是在 Vue3 中也提供了独立的 api 方便我们直接创建计算值。而今天这篇文章,笔者就会给大家讲解 ref 与 computed 的实现原理,让我们一起开始本章的学习吧。