front-end/Vue

Vue lifecycle hook

Hoon0211 2024. 4. 4. 13:11
728x90

1. lifecycle hook 이란

- 각 단계마다 중간에 코드를 실행하고 싶을때 사용을 합니다.

ex) 데이터 받아오기, 데이터 로딩중에 보여줄 화면 등

beforeCreate()
created()
beforeMount()
mounted()
beforeUpdate()
updated()
beforeUnmount()
unmounted()

728x90