码迷,mamicode.com
首页 > 其他好文 > 详细

Vuex简单使用

时间:2019-12-11 21:45:16      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:context   text   mit   temp   nbsp   获取   接收   事件   传参数   

<template>
  <div class="home">
        <!-- {{this.$store.state.count}} -->
           <!-- 这里的count1是从index.js里面的state里面拿出来的 -->
           {{count1}}
     <!-- 可以在事件后面传参数,比如数字1 -->
           <button @click="add(1)">+</button>
           <button @click="jian">-</button>
  </div>
</template>

<script>
import {mapState,mapActions} from "vuex"
export default {
        data(){
            return{
                
            }
         },
         computed:{
            //  count1(){
            //   return this.$store.state.count
            //  }
    //下面这个是用来获取页面count值 注: 使用({})语法
            ...mapState({
                count1:state=>state.count
            })
         },
         methods:{
   //用来向index.js里面的actions传下面这两个事件 注: 使用([])语法
            ...mapActions([
                ‘add‘,
                ‘jian‘
            ])
         }
}
</script>
 
 
//下面是index.js页面
import Vue from ‘vue‘
import Vuex from ‘vuex‘

Vue.use(Vuex)

export default new Vuex.Store({
  state: {
    count:1
  },
  mutations: {
    add(state,a){
      state.count++;
/
  console.log(a)
    },
    jian(state)
    {
      if(state.count>1)
      {
        state.count--
      }
    }
  },
  actions: {
  //这个地方可以用来接收我们点击的时候事件传过来的参数a 在context后面加逗号写参数就可以
    add(context,a){
      context.commit("add",a)
    },
    jian(context){
      context.commit("jian")
    }
  },
  modules: {
  }
})
//总结 actions用来操作mutations  然后再通过mutations来操作state
 
 

Vuex简单使用

标签:context   text   mit   temp   nbsp   获取   接收   事件   传参数   

原文地址:https://www.cnblogs.com/LC123456/p/12024985.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!