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 页面并帮你完成安装。
Biome 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
| 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 patterns