is not defined on the instance but referenced during render. Make sure that this property is reac...

属性或方法“changeAreaShop”不是在实例上定义的,而是在呈现期间引用的。通过初始化该属性,确保该属性是反应性的,无论是在data选项中,还是对于基于类的组件。


报错详情.png

解决方法:
在data中,对changeAreaShop进行初始化定义一下即可.

data() {
    return {
      changeAreaShop:""
      },

你可能感兴趣的:(is not defined on the instance but referenced during render. Make sure that this property is reac...)