9 lines
545 B
Markdown
9 lines
545 B
Markdown
# 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 `utils` folder.
|
|
- **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.
|