0 votes
in VueJS by

When is the ‘updated’ lifecycle hook called?

1 Answer

0 votes
by

The updated hook is called after reactive data is updated and the virtual DOM is re-rendered. It can be used to perform DOM related operations, however, there is no guarantee (by default) that child components would’ve rendered, though that can be ensured as well by using this.$nextTick inside the updated function

Related questions

+1 vote
asked Jan 24, 2022 in Angular by sharadyadav1986
+1 vote
asked Jan 24, 2022 in Angular by sharadyadav1986
...