海mia婊婊想上岸

导航

2021年8月20日

this.$nextTick

摘要: this.msg = 'itcast'// console.log(document.getElementById('myh').innerText); // 如果直接这样打印,打印出来的结果不是我们想要的itcast,而是hello,因为this.msg = ‘itcast’ 它是异步的 this 阅读全文

posted @ 2021-08-20 20:41 海mia婊婊想上岸 阅读(34) 评论(0) 推荐(0) 编辑

Vue中的watch与computed

摘要: https://www.cnblogs.com/gunelark/p/8492468.html watch可以监控data中定义的 1.整个对象 2.单个变量 3.对象中的某个元素(加引号) 放在computed: 只在计算的属性totalMarks所依赖的值results变化的时候重新计算,除此以 阅读全文

posted @ 2021-08-20 20:32 海mia婊婊想上岸 阅读(44) 评论(0) 推荐(0) 编辑

.map函数

摘要: //map是一个用于数组的函数 // 参数1:数组第n项,参数2:index,参数3:该数组 // 作用:item执行该函数后的返回值替换原item let arr=[1,2,3] var list = arr.map((item, index,arr2) => { return item*item 阅读全文

posted @ 2021-08-20 14:34 海mia婊婊想上岸 阅读(74) 评论(0) 推荐(0) 编辑