首页 > 其他分享 >Cannot read properties of undefined (reading 'state') 或者 Cannot read properties of undefin

Cannot read properties of undefined (reading 'state') 或者 Cannot read properties of undefin

时间:2023-07-24 11:56:51浏览次数:33  
标签:undefined read state Cannot reading properties

 

第一步,先检查是否在main.js中引入 store.js

 
如果检查完都引入了,且还是存在报错,
第二步: 在 package.json 将vuex 的版本更换为其它版本,并从新yarn安装,建议vuex 版本为 3.0
然后从新启动项目即可解决

标签:undefined,read,state,Cannot,reading,properties
From: https://www.cnblogs.com/tlfe/p/17576854.html

相关文章

  • 【遇到一个神奇的问题】暂未想到原因,http.Post 传入 nil参数正确,但是传输值为 nil 的
    出错的代码如下:funcgetEab(ctxcontext.Context,credentialsJSONstring,old*externalAccountKeyResp)(*externalAccountKeyResp,error){//inithttpclient// varpostData*bytes.Reader=nil ifold!=nil{ buf,_:=json.Marshal(old) postData......
  • c# mysql reader.Read()
    C#中使用MySQL的Reader.Read()方法详解在开发过程中,我们经常需要从数据库中读取数据并进行处理。在C#中,我们可以使用MySQL数据库来存储和管理数据。而在读取MySQL数据时,我们可以使用Reader.Read()方法来逐行读取数据库中的数据。本文将详细介绍C#中使用MySQL的Reader.Read()方法的......
  • Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/common
    Java中的NoClassDefFoundError异常在Java开发中,经常会遇到各种各样的异常,其中之一就是NoClassDefFoundError异常。当我们运行Java程序时,如果出现这个异常,那么通常意味着JVM无法找到所需的类定义。本文将详细介绍NoClassDefFoundError异常的原因、产生的场景以及解决方法。异常原......
  • java中tomcat 加载动态库XXX.dll报错“java.lang.UnsatisfiedLinkError: already load
    错误:在Tomcat项目和supermapiserverwar包中使用了相同的supermapjavaiobject【四个jar包】,实际的访问过程如下:这时候在访问Tomcat的时候,就会出现一个错误:anexceptioncaughtatEnvironment.loadLibrary(),programwillcontinuerunning.java.lang.UnsatisfiedL......
  • Xv6 Lab7: Multithreading
    Uthread:switchingbetweenthreads这个题还是对的起它moderate的难度了,如果认真看了book-riscv-rev2.pdf的Scheduling章节,以及看了这个课程翻译,那么这题可以很快做出来,个人觉得pdf讲得更加清楚一些。这个题甚至帮你把需要添加代码的地方都标注出来了,参照题目说明,主要......
  • WPF .net6 自定义启动入口 、 自定义Main函数、自定义 STAThread 方法
    前言:  为了解决程序开启自启动问题参考资料  CustomEntryPointsinWPFon.NETCore链接https://blog.magnusmontin.net/2020/01/31/custom-entry-point-wpf-net-core/  CreatingacustomMainmethodinaWPFapplication链接https://www.meziantou.net/creat......
  • pip install flask 时,总包blinker uninstall 失败(ERROR: Cannot uninstall 'blinker'
    今天用pipinstallflask时,总因为uninstallblinker失败,报错如下:```ERROR:Cannotuninstall'blinker'.Itisadistutilsinstalledprojectandthuswecannotaccuratelydeterminewhichfilesbelongtoitwhichwouldleadtoonlyapartialuninstall.``` ##......
  • Thread类中的threadLocals
    ThreadLocal在1.6版本中不是用一个全局的Map来存各个线程的变量副本,而是在Thread类中有一个ThreadLocalMap的变量,然后用Thread.currentThread().threadLocals.get(this)来引用的各线程变量副本,这样避免了去同步全局的Map ThreadLocal使用的简单例子:  packagecom.test;public......
  • ie6下报Internet Explorer cannot open the Internet site 错误
     ie6下报InternetExplorercannotopentheInternetsite错误  今天在ie6上测试项目,点击一个连接后报错:InternetExplorercannotopentheInternetsite 1、起初是认为body没有加载完就执行了js代码,修改了之后还是不行。 2、将js移动到</html>之后还是无效。 3、删除了......
  • Kingbase8: was aborted: ERROR: sorry, too many global temporary relations in back
    额....今天踩了一个坑,找个半天找到的解决方法设置一个会话内最多允许的全局临时表数据和索引的最大文件数量,默认值为32,最小值为1,最大值为1024。这个文件数量并不是实际磁盘看到的文件数目,而是一些依附于这个表的扩展关系文件,比如索引、大对象等。一般情况下,一个全局临时表只会占......