Vuex is a state management pattern developed specifically for Vue.js applications. It uses centralized storage to manage the status of all components of an application and uses corresponding rules to ensure that the status changes in a predictable manner. Vuex is also integrated into Vue's official debugging tool devtools, providing advanced debugging features such as zero-configuration time-travel debugging, state snapshot import and export, etc. 1. State
import { computed } from 'vue' import { useStore } from 'vuex' export default { setup () { const store = useStore() return { count: computed(() => store.state.count) } } } Getters
import { computed } from 'vue' import { useStore } from 'vuex' export default { setup () { const store = useStore() return { double: computed(() => store.getters.double) } } } Mutations
const store = createStore({ state: { count: 1 }, mutations: increment(state) { state.count++ } } })
store.commit('increment') Actions
const store = new Vuex.Store({ state: { count: 0 }, mutations: increment(state) { state.count++ } }, actions: { increment(context) { context.commit('increment') } } }) Action is triggered by store.dispatch method: store.dispatch('increment') Modules
const moduleA = { state: () => ({ ... }), mutations: { ... }, actions: { ... }, getters: { ... } } const moduleB = { state: () => ({ ... }), mutations: { ... }, actions: { ... } } const store = createStore({ modules: a: moduleA, b: moduleB } }) 6. vuex-persistedstate
1. Installation npm install --save vuex-persistedstate 2. Use import Vuex from "vuex"; import createPersistedState from "vuex-persistedstate"; const store = new Vuex.Store({ plugins: [createPersistedState()], }); The above is the details of how to quickly get started with Vuex state management in Vue3.0. For more information about Vuex state management, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: How to install PostgreSQL and PostGIS using yum on CentOS7
>>: How to completely uninstall mysql under CentOS
For those who don't know how to install the s...
I have been working on a project recently - Budou...
Introduction to influxDB influxDB is a distribute...
Today I will talk about a CSS special effect of h...
In the past few years, DIV+CSS was very popular in...
When inserting a set of data into the MySQL datab...
question: When I was doing project statistics rec...
Many times when we process file uploads, such as ...
Table of contents 1. Gojs Implementation 1. Drawi...
Five delay methods for MySQL time blind injection...
Achieve results Code html <div class="css...
Controversy over nofollow There was a dispute bet...
Table of contents background Solution New Questio...
There is a question that has troubled web designe...