vuejs_cheat_sheet
Table of Contents
Vue.js Cheat Sheet
Prerequisites
Install Node.js
Create Application
npm init vue@latest
Answer the scaffolding setup prompts:
- Project name: … <your-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
vuejs_cheat_sheet.txt · Last modified: 2024/08/11 18:08 by jimc