• 报错信息:
Invalid value for option “methods”: expected an Object, but got Function.
大致错误信息为: methods 希望是一个对象,但是得到了一个函数
  • 错误代码 :
methods(){
      test(){
      console.log(this.student);
    }
  }
  • 修正代码:
  methods:{
    test(){
      console.log(this.student);
    }
  }

相关文章:

  • 2021-10-24
  • 2021-12-04
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-09-13
  • 2022-12-23
  • 2021-12-27
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案