VUE Standards
- Style: Vue Style Guide (Essential & Strongly Recommended).
- Tooling:
Prettier,eslint-plugin-vue,Vue Test Utils. - Modern Vue: Use Composition API (
<script setup>). - State: Use
reffor primitives,reactivefor objects,computedfor derived state. - Components: Single-File Components (SFC). "Props down, events up" via
definePropsanddefineEmits.
Always load clean-code alongside this skill.
Source: dragoscirjan/opencode-config — distributed by TomeVault.