程序员做起

2021年12月27日

vue中computed和watch的区别,以及适用场景,

摘要: computed:通过属性计算而得来的属性 1、computed内部的函数在调用时不加()。 例子: computed:{ reverseStr(){ //str不发生变化的话,我只执行一次,具有缓存 return this.str.split("").reverse().join("") } } 阅读全文

posted @ 2021-12-27 10:34 王冰涛涛涛涛 阅读(1231) 评论(0) 推荐(0) 编辑