Introduction to the use of store in vuex (with examples)

不言
Release: 2018-08-23 16:56:17
Original
4250 people have browsed it

This article brings you an introduction to the use of store in vuex (with examples). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

1. Introduction to state management (vuex)
vuex is a state management model developed specifically for vue.js applications. It uses centralized storage to manage the status of all components of the application, and uses corresponding rules to ensure that the status changes in a predictable way. Vuex also integrates Vue's official debugging tool devtools extension, which provides advanced debugging functions such as zero-configuration time-travel debugging, status snapshot import and export, etc.

2. State management core
State management has 5 cores, namely state, getter, mutation, action and module. Let’s briefly introduce them respectively:
1, state
State is a single state tree. In state, we need to define the arrays, objects, strings, etc. that we need to manage. Only if they are defined here, can the state of the object you defined be obtained in the vue.js component.
2, getter
Getter is somewhat similar to the computed properties of vue.js. When we need to derive some state from the store's state, then we need to use getter. Getter will receive state as the first parameter, and the return value of getter will be based on its dependencies. It is cached and will only be recalculated when the dependency value in the getter (a value in the state that needs to be derived) changes.
3、mutation
The only way to change the state in the store is to submit a mutation, which is very similar to an event. Each mutation has a string type event type and a callback function. If we need to change the value of state, we must change it in the callback function. If we want to execute this callback function, we need to execute a corresponding calling method: store.commit.
4、action
Action can submit mutations, store.commit can be executed in action, and there can be any asynchronous operation in action. If we want to use this action on the page, we need to execute store.dispatch
5, module
Module actually only solves the problem when the state is very complex and bloated. Module can divide the store into modules, and each module has its own state, mutation, action and getter.

3. Example
1. First create a store.js, and then introduce vuex

import Vue from 'vue'import Vuex from 'vuex'Vue.use(Vuex)const state = { userInfo: {} }const mutations = { updateUserInfo(state, infos) { state.userInfo= infos } } export default new Vuex.Store({ state, mutations })
Copy after login

Such a simple store.js is complete.
How do we use this established state management in the interface?

1. Set (update) data

首先在script下引入store.js 
Copy after login

Where the data needs to be updated, place The data is updated

this.updateUserInfo(data)
Copy after login

2. Get the data

Copy after login

Get the data where needed in created || mounted || methods

Note: Also Data can be set && obtained on the same page

import { mapMutations, mapState } from 'vuex'
Copy after login

Related recommendations:

Learn simple vuex and modularization

Vue.js-vuex (state management)

The above is the detailed content of Introduction to the use of store in vuex (with examples). 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!