vue2项目提示 getRefs is undefined
在div上面写了,ref,还写了v-if
然后再watch中操作了 ref 导致报错。
分析:
组件因为v-if 为 false 没有注册和渲染,在操作的时候还使用了this.$refs函数就会获取不到
解决办法:
v-if换成v-show
标签:getRefs,html,报错,vue2,ref,undefined From: https://www.cnblogs.com/xiaosongboke/p/17746700.html