VUEX 简单小demo

<template>
    <div>
        <h2>{{msg}}</h2><hr/>
        <h3>{{$store.state.count}}--{{count}}</h3>
        <!-- 模块组 -->
        <h3>{{count}}</h3>

        <p>
            <button @click="$store.commit('add')">+</button>
            <button @click="reduce">-</button>
        </p>
        <p>
            <button @click="addAction">+</button>
            <button @click="reduceAction">-</button>
        </p>
    </div>
</template>

<script>
import store from '@/vuex/store';
import { mapState,mapMutations,mapGetters, mapActions} from 'vuex';

export default {
    store,
    data(){
        return{
            msg:'hello Vuex'
        }
    },
    //第一种
    /*
    computed:{ 
        count(){
            return  this.$store.state.count
        }
    }
    */
    //第二种
    /*
    computed:mapState({
        count:state=>state.count,
    })
    */
    //第三种
    computed:{
        ...mapState(['count']),
        ...mapGetters(['count']),

        //模块组
        count(){
            return this.$store.state.a.count
        },
        
    },
    methods:{
        ...mapMutations(['add','reduce']),
        ...mapActions(['addAction','reduceAction'])
    },
}
</script>
//数据仓库
import Vue from 'vue';
import Vuex from 'vuex';
Vue.use(Vuex);

//共享值就是状态
//mapState



const state={
    count:1
}

//改变状态对象的方法
//Mutations
const mutations={
    add(state,n){
        state.count+=n;
    },
    reduce(state){
        state.count--;
    }
}
//mapGetters
//mapActions
const getters={
    count:function(state){
        return state.count+=100
    }
    //count:state=>state.count+=100,
}
//异步
const actions={
    addAction(context){
        context.commit('add',10);
        setTimeout(() => {
            context.commit('reduce')
        }, 3000);
    },
    reduceAction({commit}){
        commit('reduce');
    }
}
//模块组   为了共同开发。
const moduleA={
    state,
    mutations,
    getters,
    actions
}

// const moduleB={
//     state,
//     mutations,
//     getters,
//     actions
// }
//暴露出去
export default new Vuex.Store({
   modules:{a:moduleA,}
})

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值