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配置的主要内容,如果未能解决你的问题,请参考以下文章