刚刚使用Vuex的过程中遇到了一个BUG,显示报错,直接页面都没渲染出来:

vuex.esm.js?358c:135 Uncaught Error: [vuex] store must be called with the new operator.

 通过查找相应的文件,发现原代码如下:

vuex.esm.js?358c:135 Uncaught Error: [vuex] store must be called with the new operator.

后面才发现自己太粗心了,少加了一个关键操作符new,加入关键字new之后,运行结果如下:

vuex.esm.js?358c:135 Uncaught Error: [vuex] store must be called with the new operator.

vuex.esm.js?358c:135 Uncaught Error: [vuex] store must be called with the new operator.

成功解决报错。 

 

相关文章:

  • 2022-01-09
  • 2021-07-03
  • 2022-12-23
  • 2022-01-02
  • 2022-02-15
  • 2022-02-20
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案