vuejs-ciclo-de-vida-componentes

Component Lifecycle in Vue.js

  • 4 min

The lifecycle of a component in Vue.js is a series of stages that a component goes through from its creation to its destruction.

The main stages of the Vue component lifecycle are:

  1. Creation: The component is initialized, its properties (props) are set up, and its initial state is established.
  2. Mounting: The component is added to the DOM and becomes visible in the user interface.
  3. Updating: The component is updated when its reactive data or properties change.
  4. Destruction: The component is removed from the DOM, and associated resources are released to prevent memory leaks.

Lifecycle Hooks

Each stage has associated Hooks that allow us to execute code at specific moments in the lifecycle (if needed).

HookDescription
onBeforeMountExecutes just before the component is mounted in the DOM.
onMountedExecutes after the component has been mounted in the DOM.
onBeforeUpdateExecutes just before the component is updated.
onUpdatedExecutes after the component has been updated.
onBeforeUnmountExecutes just before the component is destroyed.
onUnmountedExecutes after the component has been destroyed.

Let’s go through each of them in depth 👇.

Hook onBeforeMount

The onBeforeMount hook executes just before the component is mounted in the DOM.

At this stage, the component has been initialized, but it has not yet been added to the DOM.

onBeforeMount(() => {
  console.log('The component is about to be mounted in the DOM');
});

Hook onMounted

The onMounted hook executes after the component has been mounted in the DOM.

At this stage, the component is fully rendered and visible on the page.

onMounted(() => {
  console.log('The component has been mounted in the DOM');
});

Hook onBeforeUpdate

The onBeforeUpdate hook executes just before the component is updated. This occurs when the reactive data or properties of the component change.

onBeforeUpdate(() => {
  console.log('The component is about to be updated');
});

Hook onUpdated

The onUpdated hook executes after the component has been updated. At this stage, the DOM has been updated to reflect the changes in the data.

onUpdated(() => {
  console.log('The component has been updated');
});

Hook onBeforeUnmount

The onBeforeUnmount hook executes just before the component is destroyed.

At this stage, the component is still in the DOM, but it is about to be removed.

onBeforeUnmount(() => {
  console.log('The component is about to be destroyed');
});

Hook onUnmounted

The onUnmounted hook executes after the component has been destroyed.

At this stage, the component has been removed from the DOM, and associated resources have been released.

onUnmounted(() => {
  console.log('The component has been destroyed');
});

How to Use Lifecycle Hooks

To use the component lifecycle hooks with the Composition API, we have them available as functions that we will call within the setup function.

For example, here is a code snippet that uses all the hooks to see their usage.

<template>
  <div>
    <h1>Counter: {{ count }}</h1>
    <button @click="increment">Increment</button>
  </div>
</template>

<script setup>
import { ref, onBeforeMount, onMounted, onBeforeUpdate, onUpdated, onBeforeUnmount, onUnmounted } from 'vue';

const count = ref(0);

function increment() {
  count.value++;
}

// Lifecycle hooks
onBeforeMount(() => {
  console.log('The component is about to be mounted in the DOM');
});

onMounted(() => {
  console.log('The component has been mounted in the DOM');
});

onBeforeUpdate(() => {
  console.log('The component is about to be updated');
});

onUpdated(() => {
  console.log('The component has been updated');
});

onBeforeUnmount(() => {
  console.log('The component is about to be destroyed');
});

onUnmounted(() => {
  console.log('The component has been destroyed');
});
</script>

<style>
button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}
</style>

In this example,

  • We have used all the main lifecycle hooks
  • Each hook prints a message to the console at the corresponding stage of the lifecycle.

Usually, you will never need all the hooks. This is just a demo so you can see how they work.

Practical Example