Update: Wikified 129 files from Datacollector_MAC/out_wiki (P-Reinforce v3.0)

This commit is contained in:
Antigravity Agent
2026-05-04 10:22:25 +09:00
parent f01c9d55ef
commit 10bed083c5
126 changed files with 4255 additions and 705 deletions
@@ -0,0 +1,28 @@
---
category: Frontend
tags: [auto-wikified, technical-documentation, frontend]
title: Computed Properties & Watchers
description: "Computed Properties와 Watchers는 Vue 3 Composition API에서 파생된 상태를 관리하고 데이터 변경에 대응하기 위한 필수적인 도구입니다 [1]."
last_updated: 2026-05-04
---
# Computed Properties & Watchers
## 📌 Brief Summary
Computed Properties와 Watchers는 Vue 3 Composition API에서 파생된 상태를 관리하고 데이터 변경에 대응하기 위한 필수적인 도구입니다 [1]. Computed Properties는 반응형 데이터에 기반해 값을 계산하고 캐시(cache)하는 반면, Watchers는 데이터 변경 시 특정 액션이나 비동기 작업 등의 부수 효과(side effects)를 처리하는 데 사용됩니다 [1, 2].
## 📖 Core Content
* **Computed Properties (계산된 속성)**
* 반응형 데이터(reactive data)로부터 파생된 값을 생성하는 데 최적화되어 있습니다 [1].
* 결과값을 자동으로 캐시하며, 의존하고 있는 데이터가 변경될 때만 다시 계산을 수행하므로 데이터 필터링이나 총계 계산과 같은 작업에 이상적입니다 [1].
* `computed()`를 사용하여 생성된 반응형 상태는 여러 컴포넌트 인스턴스 간에 공유하여 사용할 수도 있습니다 [3].
* **Watchers (감시자)**
* 반응형 데이터의 변경이 발생했을 때 API 호출과 같은 특정 액션을 트리거하기 위해 사용됩니다 [2].
* 비동기 작업(asynchronous tasks)이나 부수 효과를 처리하는 목적에 특히 유용하게 활용됩니다 [2].
## ⚖️ Trade-offs & Caveats
소스에 관련 정보가 부족합니다.
---
*Last updated: 2026-05-03*