This time I will bring you the vuex export object to add value to the state. What are the precautions for the vuex export object to add the value to the state. The following is a practical case, let's take a look.
vuex is a centralized state management architecture specially designed for vue.js. state? I understand it as the part where the attributes in data need to be shared with other vue components, which is called state. Simply put, it is the attributes that need to be shared in data.
1. In the vue component
execute the enabledcheckbox method, true is the parameter, used to change the value in state
this.$store.dispatch("enabledcheckbox",true)
Get the value of useredit from state
this.$store.state.useredit
2 Add the value to the state in the object pair exported by vuex
Add mutations to change the state Value
Add actions to mutations
import Vue from 'vue' import vuex from 'vuex' Vue.use(vuex) export default new vuex.Store({ state: { useredit: false, }, mutations: { ENABLEDCHECKBOX(state, value) { state.checkboxDisable = value }, }, actions: { enabledcheckbox({ commit }, value) { commit('ENABLEDCHECKBOX', value) }, } }) //console.log(vuex)
In main.js
import store from './vuex' new Vue({ el: '#app', router, store, render:h=>h(App) })
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related matters on the php Chinese website article!
Recommended reading:
How to use Angular component interaction
##Use vue-route beforeEach to make navigation guards
The above is the detailed content of vuex export object pair adds value to state. For more information, please follow other related articles on the PHP Chinese website!