9148c358d0
Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를 Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류. - 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로 자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거, 동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거. - 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming, Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business, Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로, 나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는 title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백). 원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지. - 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서. - 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는 지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지. - Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경. - 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
5.4 KiB
5.4 KiB
id, title, category, status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, verification_status, tags, raw_sources, last_reinforced, github_commit, tech_stack
| id | title | category | status | canonical_id | aliases | duplicate_of | source_trust_level | confidence_score | verification_status | tags | raw_sources | last_reinforced | github_commit | tech_stack | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| wiki-2026-0508-options-api | Vue Options API | 10_Wiki/Topics | verified | self |
|
none | A | 0.9 | applied |
|
2026-05-10 | pending |
|
Vue Options API
매 한 줄
"매 Vue 2 의 object-shape component". Options API 매
data(),computed,methods,watch, lifecycle hook 의 named option 으로 component 정의. Vue 3 매 Composition API 가 default 이지만 Options API 매 여전히 supported — 매 small component / Vue 2 migration / 매 OOP 친화 팀의 sweet spot.
매 핵심
매 구조
data()— reactive state factory.computed— derived state (cached).methods— handler / utility.watch— side effect on change.props— typed input.- Lifecycle:
beforeCreate,created,beforeMount,mounted,beforeUpdate,updated,beforeUnmount,unmounted.
매 vs Composition API
- Options: 매 organization by option type (all data together, all methods together).
- Composition: 매 organization by feature (state + logic for one concern colocated).
- 매 small / simple component → Options 매 OK. Large → Composition.
매 응용
- 매 Vue 2 codebase 의 maintenance.
- Junior-friendly component (매 명확한 named slot).
- CMS / form-heavy app (매 state simple).
- Migration: 매 Options → Composition 점진.
💻 패턴
Basic Options component
<template>
<div>
<h1>{{ title }}</h1>
<p>Count: {{ count }}, Doubled: {{ doubled }}</p>
<button @click="increment">+</button>
</div>
</template>
<script>
export default {
name: "Counter",
props: {
title: { type: String, required: true },
initial: { type: Number, default: 0 },
},
data() {
return { count: this.initial };
},
computed: {
doubled() { return this.count * 2; },
},
methods: {
increment() { this.count++; },
},
watch: {
count(newVal, oldVal) {
console.log(`count: ${oldVal} → ${newVal}`);
},
},
mounted() {
console.log("mounted");
},
};
</script>
Watcher with options
export default {
data: () => ({ query: "" }),
watch: {
query: {
handler(v) { this.search(v); },
immediate: true,
// deep: true (for object/array)
},
},
methods: {
async search(q) { /* ... */ },
},
};
Vuex (Options-style mapState)
import { mapState, mapActions } from "vuex";
export default {
computed: {
...mapState("user", ["profile", "loading"]),
},
methods: {
...mapActions("user", ["fetchProfile"]),
},
mounted() { this.fetchProfile(); },
};
Mixins (매 legacy reuse)
const fetchMixin = {
data: () => ({ loading: false, data: null }),
methods: {
async fetch(url) {
this.loading = true;
this.data = await (await fetch(url)).json();
this.loading = false;
},
},
};
export default {
mixins: [fetchMixin],
mounted() { this.fetch("/api/items"); },
};
TypeScript (Options + Vue.extend / defineComponent)
import { defineComponent } from "vue";
export default defineComponent({
props: {
user: { type: Object as () => { id: string; name: string }, required: true },
},
data() {
return { likes: 0 as number };
},
computed: {
label(): string {
return `${this.user.name} (${this.likes})`;
},
},
methods: {
like() { this.likes++; },
},
});
Options → Composition migration (1 component)
<!-- Before (Options) -->
<script>
export default {
data: () => ({ count: 0 }),
computed: { doubled() { return this.count * 2; } },
methods: { inc() { this.count++; } },
};
</script>
<!-- After (Composition) -->
<script setup>
import { ref, computed } from "vue";
const count = ref(0);
const doubled = computed(() => count.value * 2);
const inc = () => count.value++;
</script>
매 결정 기준
| 상황 | Approach |
|---|---|
| New Vue 3 project | Composition API (<script setup>) |
| Vue 2 → 3 migration | Options 유지 후 점진 |
| Small component, junior team | Options OK |
| Complex feature, reuse logic | Composition + composables |
| Legacy mixin codebase | Options + 점진 composables |
기본값: 매 new code 매 Composition. Options 매 maintenance / specific reason 만.
🔗 Graph
- 부모: Vue-3
- 변형: Composition-API
- 응용: Vuex · Pinia
- Adjacent: Mixins · Composables
🤖 LLM 활용
언제: Vue 2 maintenance, simple component, OOP-trained team onboarding. 언제 X: 매 large feature with shared logic — Composition + composables 의 win.
❌ 안티패턴
- Mixin overuse: 매 name collision, source ambiguity. Composables 으로 대체.
- Arrow function in methods:
thislost — 매 normal function 만. - Mutate prop: 매 anti-pattern, warning. Emit + parent update.
- Heavy logic in computed: 매 non-pure side effect — watch 으로 분리.
🧪 검증 / 중복
- Verified (Vue 3 official docs — Options API, vuejs/composition-api migration guide).
- 신뢰도 A.
🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — Options 구조, watcher/Vuex/mixin/TS, migration 패턴 |