Files
skt-vuetify-templates/AGENTS.md
T
skytek_xinliang 507afcc99c feat: project init
2026-03-26 10:08:35 +08:00

23 lines
442 B
Markdown

# Project Rules
## General
- Follow the existing code style and patterns.
- Use pnpm for running project commands.
- Keep code in TypeScript unless migration is required.
## Stack
- Framework: Vue 3 + Vite
- UI Library: Vuetify
- Enabled Features: ESLint, Vuetify MCP, Pinia, Vue I18n, Vue Router
## Icon Usage
```js
<script setup>
import { mdiAccount } from '@mdi/js'
</script>
<template>
<v-icon :icon="mdiAccount" />
</template>
```