纠错过程:
我尝试了版匹配不匹配问题,但尝试后还是报错
然后把store文件夹下的index.js里的第2步创建对象给修改成如下内容,就成功运行了
// index.js页面
import Vue from 'vue'
import Vuex from 'vuex'
// 1.安装插件
Vue.use(Vuex);
// 2.创建对象----这个写法不行了
// const store = new Vuex.Store({
// state:{
// count:1000
// },
// mutations:{
// },
// actions:{
// },
// getters:{
// },
// modules:{
// }
// })
// 2.创建对象-----这个写法就可以运行成功不报错
const store = new Vuex.Store({
state(){
return{
count:1000
}
},
mutations:{
},
actions:{
},
getters:{
},
modules:{
}
})
// 3.导出store独享
export default store