在vue项目中引入vuex使用(引入到vue项目中)

在这里插入图片描述
项目下新建store文件

// npm下载后 导入
import Vue from 'vue'
import Vuex from 'vuex'

// 注册在vue实例上
Vue.use(Vuex)

// 定义结构
export default new Vuex.Store({
    
    
  state: {
    
    
  },
  getters: {
    
    
  },
  mutations: {
    
    
  },
  actions: {
    
    
  },
  modules: {
    
    
  }
})

//main.js
import store from './store'

new Vue({
    
    
  router,
  store,
  render: h => h(App)
}).$mount('#app')

猜你喜欢

转载自blog.csdn.net/Xiang_Gong_Ya_/article/details/132494851
今日推荐