vuex配置

Posted javascript9527

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vuex配置相关的知识,希望对你有一定的参考价值。

import Vue from ‘vue‘
import App from ‘./App.vue‘
import router from ‘./router‘
import store from ‘./store‘
import Vuex from ‘vuex‘

 Vue.use(Vuex)
 const myStore = new Vuex.Store(
    state :
      count:0
    ,
    getters:
       getCount(state)
            return ‘当前最新的count值是:‘+state.count
       
    ,
    mutations:
       add(state)
          state.count++
       
    ,
    actions:
        mody(e)
            setTimeout( ()=>
              e.commit(‘add‘)
            ,2000 )
        
    
    
)

Vue.config.productionTip = false

new Vue(
  router,
  store:myStore,
  render: h => h(App)
).$mount(‘#app‘)

 

以上是关于vuex配置的主要内容,如果未能解决你的问题,请参考以下文章

Vuex的引入及其仓库store的配置

vue项目搭建router配置vuex配置

vuex配置token和用户信息

vuex初始化配置及快速调用

vuex配置

vuex的秘籍之vuex的模块化及工具类,样式的配置