Detailed explanation of vuex usage steps

php中世界最好的语言
Release: 2018-05-09 10:06:11
Original
2158 people have browsed it

This time I will bring you a detailed explanation of the steps to use vuex, and what are theprecautionswhen using vuex. 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 thepropertyin the data that needs 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)
Copy after login

Get the value of useredit from state

this.$store.state.useredit
Copy after login

2 Add the value to theobjectexported by vuex to state

Add mutations to change the value of state

Addactions 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)
Copy after login

In main.js

import store from './vuex' new Vue({ el: '#app', router, store, render:h=>h(App) })
Copy after login

I believe you have mastered it after reading the case in this article For more exciting methods, please pay attention to other related articles on the php Chinese website!

Recommended reading:

vue axios implements data interaction

Detailed explanation of practical skills of Angular Component

The above is the detailed content of Detailed explanation of vuex usage steps. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!