Vue.js Cheat Sheet
Prerequisites
Install 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 <your-project-name>
npm install
npm run dev
Build For Production
npm run build