1、computed在调用时不需要加(),watch是不需要调用的
2、computed如果属性没有发生改变时会从缓存中读取值,watch当属性发生改变时会接收到2个值:一个为新值,一个为旧值
3、computed里面的函数必须要有一个return的结果
4、watch如果需要监听对象的情况下必须设置深度监听
5、命名:computed里面的函数名可以任意命名,但是watch中的函数名必须是data中属性的名称
相关文章
- 12-19map和hashmap中的区别
- 12-19Python中tuple和list的区别?Python基础学习!
- 12-19python中查询数据库时fetchone()函数和fetchall()函数的区别
- 12-19web.xml中的ContextLoaderListener和DispatcherServlet区别
- 12-19在C和C++中struct与typedef struct的区别详细介绍
- 12-19JS数组中 forEach() 和 map() 的区别
- 12-19springboot中Thymeleaf和Freemarker模板引擎的区别
- 12-19Spring框架中@Autowired和@Resource的区别
- 12-19js中数组删除 splice和delete的区别,以及delete的使用
- 12-19js中slice()和splice()的区别