This content originally appeared on DEV Community and was authored by Dharmendra Kumar
Managing global state in a Vue.js application is critical, especially when different components need to share data or react to changes. Vuex is the official state management library for Vue.js, offering a structured way to manage state globally. Combined with Vue.js Lifecycle Hooks, you can manage global state in a precise and predictable manner.
In this post, we will build a simple counter app using Vuex, showing how you can leverage Vue.js lifecycle hooks to interact with the state during different stages of the component's lifecycle.
๐ What is Vuex?
Vuex is a state management pattern + library for Vue.js applications. It serves as a centralized store for all the components in an application, with rules ensuring that the state can only be mutated in a predictable fashion.
๐ ๏ธ Building a Simple Counter App with Vuex
Letโs walk through the steps to build a basic counter app where the state is managed globally using Vuex, and the component interacts with it via lifecycle hooks.
Step 1: Setting up the Vuex Store (store.js
)
First, we need to create the Vuex store to manage our counter state globally. The store will include:
- state: The initial value of the counter.
- mutations: Functions that will modify the state.
- actions: Methods that can dispatch mutations, which are useful for handling async operations (not needed in this case, but weโll include it for clarity).
// store.js
import { createStore } from 'vuex';
export const store = createStore({
state: {
count: 0, // The initial counter value
},
mutations: {
increment(state) {
state.count++;
},
},
actions: {
incrementCount({ commit }) {
commit('increment');
},
},
});
- state: Holds the global counter value.
- mutations: Vuexโs way of changing the state in a predictable manner.
-
actions: Useful for asynchronous operations but simply commits the
increment
mutation here.
Step 2: Using Vuex in the Vue Component
Next, weโll create a Vue component that interacts with the Vuex store, utilizing lifecycle hooks to log and interact with the global state.
Counter Component (Counter.vue
)
<template>
<div>
<h1>Global Counter: {{ count }}</h1>
<button @click="incrementCount">Increment</button>
</div>
</template>
<script>
import { mapState, mapActions } from 'vuex';
export default {
computed: {
// Using mapState to access global state
...mapState(['count']),
},
methods: {
// Using mapActions to trigger actions
...mapActions(['incrementCount']),
},
created() {
console.log('Component created! Current count is:', this.count);
},
updated() {
console.log('Component updated! New count is:', this.count);
},
};
</script>
Explanation:
-
mapState: Maps the global state
count
from the Vuex store to the componentโs computed properties, allowing us to accesscount
directly in the template. -
mapActions: Maps the
incrementCount
action, which commits theincrement
mutation to modify the state. -
Lifecycle Hooks:
-
created
: Logs the initial counter value when the component is created. -
updated
: Logs the new counter value whenever the component re-renders due to state changes.
-
Step 3: Register the Vuex Store in Your App
Finally, we need to register the Vuex store in the main application file to make it available across all components.
main.js
import { createApp } from 'vue';
import App from './App.vue';
import { store } from './store'; // Import the Vuex store
const app = createApp(App);
app.use(store); // Use Vuex in the app
app.mount('#app');
๐ Vue.js Lifecycle Hooks + Vuex: Practical Example
In this example, we utilize two lifecycle hooks (created
and updated
) to keep track of when the component is created and when it updates in response to state changes.
- created: This hook is called once the component is instantiated but before itโs mounted. It's a good place to fetch initial data or log the current state.
- updated: This hook is called every time the state is updated and the DOM is re-rendered. It helps in tracking changes to reactive data.
๐ Full Example: Counter App with Vuex and Lifecycle Hooks
// Counter.vue
<template>
<div>
<h1>Global Counter: {{ count }}</h1>
<button @click="incrementCount">Increment</button>
</div>
</template>
<script>
import { mapState, mapActions } from 'vuex';
export default {
computed: {
// Maps the count from the Vuex store's state to this component's computed properties
...mapState(['count']),
},
methods: {
// Maps the action to the component's methods
...mapActions(['incrementCount']),
},
created() {
// Lifecycle hook: runs when the component is created
console.log('Component created! Initial count:', this.count);
},
updated() {
// Lifecycle hook: runs when the component is updated
console.log('Component updated! New count:', this.count);
},
};
</script>
๐ง Key Takeaways
- Vuex provides a centralized store to manage the global state of your application.
- By using mapState and mapActions, you can easily access and modify global state inside your components.
-
Lifecycle hooks like
created
andupdated
give you more control over when and how you interact with your state.
With this approach, you have a structured and scalable way to manage global state using Vuex, while taking advantage of Vue.js lifecycle hooks for precise control over state initialization and updates!
This content originally appeared on DEV Community and was authored by Dharmendra Kumar
Dharmendra Kumar | Sciencx (2024-09-12T10:17:48+00:00) ๐ State Management with Vuex and Vue.js Lifecycle Hooks ๐. Retrieved from https://www.scien.cx/2024/09/12/%f0%9f%94%84-state-management-with-vuex-and-vue-js-lifecycle-hooks-%f0%9f%9a%80/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.