UsefulLinks
Computer Science
Web Development
Frontend Frameworks and Libraries
Vue.js Framework
1. Introduction to Vue.js
2. Development Environment Setup
3. Vue Application Fundamentals
4. Reactivity System Deep Dive
5. Template Directives
6. Conditional Rendering
7. List Rendering
8. Event Handling
9. Form Input Binding
10. Class and Style Bindings
11. Component Fundamentals
12. Advanced Component Patterns
13. Component Communication
14. Composition API
15. Vue Router
16. State Management with Pinia
17. Testing Vue Applications
18. Build Tools and Development
19. Advanced Topics
20. Deployment and Production
2.
Development Environment Setup
2.1.
Prerequisites
2.1.1.
Node.js Installation
2.1.2.
Understanding npm
2.1.3.
Package Manager Options
2.1.3.1.
npm
2.1.3.2.
Yarn
2.1.3.3.
pnpm
2.2.
Code Editor Setup
2.2.1.
Visual Studio Code
2.2.2.
WebStorm
2.2.3.
Vim/Neovim
2.2.4.
Essential Extensions
2.2.4.1.
Volar
2.2.4.2.
Vue Language Features
2.2.4.3.
ESLint
2.2.4.4.
Prettier
2.2.4.5.
Auto Rename Tag
2.3.
Browser Developer Tools
2.3.1.
Vue DevTools Extension
2.3.2.
Browser Console
2.3.3.
Network Tab Usage
2.4.
Project Creation Methods
2.4.1.
Using create-vue
2.4.2.
Using Vite
2.4.3.
Using Vue CLI
2.4.4.
Manual Setup
2.5.
Project Structure Understanding
2.5.1.
Root Directory Files
2.5.2.
src Directory Organization
2.5.3.
public Directory
2.5.4.
Configuration Files
2.5.5.
Package.json Understanding
Previous
1. Introduction to Vue.js
Go to top
Next
3. Vue Application Fundamentals