545 B
545 B
Agent Guidelines for Vue
These rules must be followed when working on this project:
- No Code Comments: Never add comments to the
<script>logic. Only add comments within the<template>. - Component Reuse: Always create unique components and reuse them; never duplicate code.
- Utils: Always separate reusable functions into a
utilsfolder. - Constants: All constant values that can be removed from a component should be extracted. Maintain a single source of truth for constants. Do not use magic numbers in the code.