123456789101112131415161718192021222324252627282930313233 |
- import Vue from 'vue'
- import Vuex from 'vuex'
- import * as actions from './actions'
- import * as getters from './getters'
- Vue.use(Vuex)
- // 应用初始状态
- const state = {
- count: 10,
- isDing: false
- }
- // 定义所需的 mutations
- const mutations = {
- INCREMENT(state) {
- state.count++
- },
- DECREMENT(state) {
- state.count--
- },
- isDingFun(state){
- state.isDing = true
- }
- }
- // 创建 store 实例
- export default new Vuex.Store({
- actions,
- getters,
- state,
- mutations
- })
|