vuex最简单、最直白、最全的入门文档 vue从入门到进阶:Vuex状态管理(十)

前端开发 作者: 2024-08-20 21:50:01
前言 我们经常用element-ui做后台管理系统,经常会遇到父组件给子组件传递数据,下面一个简单的例子,点击按钮,把弹框显示变量数据通过子组件的props属性传递,子组件通过$emit事件监听把数据
<template>
  div>
    a href="javascript:;" @click="dialogshow = true">点击</acommon-dialog :show.sync="dialogshow"></common-dialog>
    弹框是否显示:{{dialogshow}}
  >
>

script>
import commondialog from '@/components/dialog
export default {
    name: parent,components:{
        common-dialog:commondialog
    },data () {
        return {
          dialogshow:false
        }
    },methods:{
        
    }
}
>
el-dialog :visible.sync="elDialogShow"  title="提示">
        span>这是一段弹框信息span slot="footer" class="dialog-footer">
            el-button @click="elDialogShow = false">取 消el-buttontype="primary">确 定el-dialog
    export  {
        name:childrenshow],computed:{
            elDialogShow:{
                get(){
                    return this.show
                },set(value){
                    .$emit(update:show {
                
            };
        }
    }
>
<!--父组件-->
="$store.state.show = true"
    弹框是否显示:{{$store.state.show}}
  子组件="$store.state.show"其它代码省略>
npm install vuex --save
import vuex from 'vuex'
Vue.use(vuex)
var store = new vuex.Store({
    state:{
        show:false
    }
})
 Vue({
  el: '#app'
})
="$store.state.show = false">
import Vue from 'vue'
import vuex from 'vuex'
Vue.use(vuex);

export default 
    }
})
//vuex
import store from './store'

使用store
  template: '<App/>'state下面不好管理,这就用modules
import Vue from 'vue'
import Vuex from 'vuex'
import app from './modules/app'   app模块数据
import user from './modules/user'  用户模块数据
import getters from './getters'  

Vue.use(Vuex)

const store =  Vuex.Store({
  modules: {
    app,user
  },getters
})

export default store
const getters = {
  show: state => state.app.show
}
export default getters
const moduleA = {
  state: { ... },mutations: { ... },actions: { ... },getters: { ... }
}

const moduleB = Vuex.Store({
  modules: {
    a: moduleA,b: moduleB
  }
})

store.state.a  -> moduleA 的状态
store.state.b  -> moduleB 的状态
export default {
    state:{
        show:
    }
}
export 
    },mutations:{
        SET_DIALOG_STATE:(state,val) => { 改变弹框是否显示的状态
            state.show = val
        }
    }
}
="$store.commit('SET_DIALOG_STATE',true)"
    弹框是否显示:{{$store.state.app.show}}
   {
         
        }
    },1)">>
="$store.getters.show">
  • mutations中的方法是不分模块的,比如你在app.js中定义了SET_DIALOG_STATE这个方法,也在user.js中定义了SET_DIALOG_STATE这个方法,那么在任一组件中调用SET_DIALOG_STATE方法。
  • mutations里的操作必须是同步的。
export return state.show
        }
    },1)"> val
        }
    },actions:{
        set_dialog_state({commit,state},dialogVal){ 对象解构
            commit('SET_DIALOG_STATE'commit('mutations其它方法','其它方法需要改变的值') 
        }
        
        等价于下面的:
        /*
        set_dialog_state(context,dialogVal){
            context.commit('SET_DIALOG_STATE',dialogVal)
            context.commit('mutations其它方法','其它方法需要改变的值') 
        }
        */
    }
}
<template>
  <div>
    <a href="javascript:;" @click="$store.dispatch('set_dialog_state',true)">点击</a>
    <common-dialog></common-dialog>
    弹框是否显示:{{$store.state.app.show}}
  </div>
</template>

<script>
import commondialog from '@/components/dialog'
export  {
    name: 'parent'
<template>
    <el-dialog :visible.sync="$store.getters.show"  title="提示">
        <span>这是一段弹框信息</span>
        <span slot="footer" class="dialog-footer">
            <el-button @click="$store.dispatch('set_dialog_state',false)">取 消</el-button>
            <el-button type="primary" @click="$store.dispatch('set_dialog_state',false)">确 定</el-button>
        </span>
    </el-dialog>
</template>

mapGetters

<template>
    <el-dialog :visible.sync="$store.getters.show"  title="提示">
        <span>这是一段弹框信息</span>
        <span slot="footer" class="dialog-footer">
            <el-button @click="$store.dispatch('set_dialog_state',false)">确 定</el-button>
        </span>
    </el-dialog>
</template>
<template>
    <el-dialog :visible.sync="show"  title="提示">
        <span>这是一段弹框信息</span>
        <span slot="footer" class="dialog-footer">
            <el-button @click="$store.dispatch('set_dialog_state',false)">确 定</el-button>
        </span>
    </el-dialog>
</template>
<script>
    import { mapGetters } from 'vuex'
    export  {
        name:'children' {
                
            };
        },computed:{
            ...mapGetters([
                'show'
            ])
        }
        
    }
</script>
<template>
    <el-dialog :visible.sync="dialogShow"  title="提示">
        <span>这是一段弹框信息</span>
        <span slot="footer" class="dialog-footer">
            <el-button @click="$store.dispatch('set_dialog_state',computed:{
            ...mapGetters({
                dialogShow:'show'
            })
        }
        
    }
</script>

mapState

="show"="$store.dispatch('set_dialog_state',1)">
    import { mapState } from vuex=> state.app.show
            })
        }
        
    }
>
="showState" state.app.show,//方式一 箭头函数
                showState(state){  方式二 常规函数
                     state.app.show
                }
            })
        }
        
    }
>

mapMutations

="SET_DIALOG_STATE(true)"
import { mapMutations } from SET_DIALOG_STATE])
    }
}
>
="changeState(true)"' 改变名字
        })
    }
}
>

mapActions

="set_dialog_state(true)"
import { mapActions  } from set_dialog_state>
原创声明
本站部分文章基于互联网的整理,我们会把真正“有用/优质”的文章整理提供给各位开发者。本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
本文链接:http://www.jiecseo.com/news/show_65738.html