vue笔记

--------------setTimeout---------
setTimeout(() => {
  this.actAdd();
}, 1000);

let _this = this;
 setTimeout(function () {
  _this.actAdd()//娃娃消失
}, 1000);

vue-pdf 流转url

https://blog.csdn.net/m0_37852904/article/details/95992267

 

vue组件间通信六种方式(完整版)
https://segmentfault.com/a/1190000019208626

你可能感兴趣的:(vue)