TypeError: Cannot read properties of undefined (reading ‘dispatch’)
在开发项目中遇到这个bug,记录一下解决办法文章来源:https://www.toymoban.com/news/detail-624659.html
- 在入口文件main.js看注册的store有无大小写错误
import store from './store';
new Vue({
router,
store,
render: h => h(App),
//注册仓库,组件实例的身上会多一个$store属性
}).$mount('#app')
- 版本太高
vue2安装3版本的vuex,默认安装的4版本给vue3用
//卸载原来安装的vuex
npm uninstall vuex
//安装3.6.2版本的vuex
npm install vuex
nprogress
在查看完代码无错误后去翻了一下nprogress的使用教程
发现进度条关闭的方法居然是done()不是end()!!!文章来源地址https://www.toymoban.com/news/detail-624659.html
nProgress.end();//错误
nProgress.done();//正确
到了这里,关于TypeError: Cannot read properties of undefined (reading ‘dispatch‘)以及一点点的nprogress的错误的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!