VUE3/기초

[ VUE3 ] 기초다지기 02, ref

ucong 2021. 3. 23. 00:55

See the Pen vue3 기초 / ref by ucong2222 (@ucong2222) on CodePen.

* 더 알아보기

setTimeout(함수, 3000);  // 3초뒤 함수 실행
setInterval(함수, 3000); // 3초마다 함수 실행
생략 전 생략 후
setTimeout(function() {
  alert(age);
}, 3000);
setTimeout(() => {
  alert(age);
}, 3000);