vue3-typescript
스타11
포크1
업데이트2026년 4월 5일 15:06
Vue 3 with TypeScript and Composition API
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Vue 3 with TypeScript and Composition API
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | vue3-typescript |
| description | Vue 3 with TypeScript and Composition API |
| model | inherit |
| triggers | [{"file_pattern":"*.vue"}] |
Build type-safe Vue 3 applications with Composition API.
<script setup> syntaxdefineProps<Props>()defineEmits<Emits>() for eventsdefineExpose when neededshallowRef for large objectsdefineComponent<script setup lang="ts">
interface Props {
title: string;
count?: number;
}
const props = withDefaults(defineProps<Props>(), {
count: 0
});
const emit = defineEmits<{
update: [value: number];
}>();
const doubled = computed(() => props.count * 2);
</script>
/typescript - TypeScript fundamentals/react - Compare with React patternsBiome JavaScript/TypeScript linter and formatter
Hono lightweight web framework on Cloudflare Workers
Cloudflare Workers edge computing platform
Laravel PHP framework best practices
MySQL database best practices and query patterns
Next.js with React 19 App Router patterns