edge浏览器报错 "*this*" is not defined

测试页面的时候发现一个很奇怪的问题,页面在谷歌,ie跑都没有问题,可是在edge浏览器却出现一个很奇怪的错误。详细的错误信息如下:

[Vue warn]: Property or method "*this*" is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, or for class-based components, by initializing the property. See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties. (found in <Root>)

经过一番排查发现,是vue在取值的时候,写了一个多余的this

这个this过去一直认为其实就是指向该区域的vue对象,所以写不写其实没关系,这个代码在谷歌和ie都没问题,唯独在这个edge浏览器报错,去掉这个this就没问题了。

猜你喜欢

转载自www.cnblogs.com/mayiaction/p/11819089.html