error:vuex.esm.js?2f62:135 Uncaught Error: [vuex] must call Vue.use(Vuex) before creating a store
这个错误翻译过来就是[vuex]必须在创建存储实例之前调用Vue.use(vuex)。
报错原因: 在main.js中去引入并使用vuex
解决方法:在store中的index.js文件创建store实例之前去导入并使用vuex
注意:在vue脚手架中会按照import语句的顺序先去执行后,才会执行其他