====== Vue.js Cheat Sheet ======
===== Prerequisites =====
Install [[https://nodejs.org/|Node.js]]
===== Create Application =====
npm init vue@latest
Answer the scaffolding setup prompts:
- Project name: …
- Add TypeScript? … __No__ / Yes
- Add JSX Support? … __No__ / Yes
- Add Vue Router for Single Page Application development? … __No__ / Yes
- Add Pinia for state management? … __No__ / Yes
- Add Vitest for Unit testing? … No / Yes
- Add Cypress for both Unit and End-to-End testing? … __No__ / Yes
- Add ESLint for code quality? … __No__ / Yes
- Add Prettier for code formatting? … __No__ / Yes
===== Install Dependencies / Run Application =====
cd
npm install
npm run dev
===== Build For Production =====
npm run build
{{tag>front_end}}