Error in v-on handler: “TypeError: this.$refs.popup.isShow is not a function“

调用show()的aip方法报错!

报错的信息截图如下:
Error in v-on handler: “TypeError: this.$refs.popup.isShow is not a function“_第1张图片
通过打印console.log(this.$refs.popup),查看到这个popup是一个数组
Error in v-on handler: “TypeError: this.$refs.popup.isShow is not a function“_第2张图片

报错前的代码

原来的代码时是这样 this.$refs.popup.show()
在这里插入图片描述

修改后的代码

后面改成了 ‘this.$refs.popup[0].show()’,获取数组的第一个解决了该问题
Error in v-on handler: “TypeError: this.$refs.popup.isShow is not a function“_第3张图片

你可能感兴趣的:(踩坑日志,ssh,运维)