在使用vuex的时候报错 Property or method “$store” is not defined,但是检查以后用法没有问题。最终找到原因是因为在store/index.js中引入vue的时候首字母大写了,改为小写即可

import Vue from 'vue' //注意这个地方vue要小写,大写会出错
import Vuex from 'vuex'
//1.安装插件
Vue.use(Vuex)

//2.创建对象
const store = new Vuex.Store({
  state: {
    counter: 1000
  },
  mutations: {

  },
  actions: {

  },
  getters: {

  },
  modules: {

  }
})
export default store

Logo

前往低代码交流专区

更多推荐