/vuejs-3-complete-crash-course

Source code for Vue.js 3 complete crash course (Options/Composition API, Vuex, Vue Router...)

Primary LanguageVue

The Complete Vue.js 3 Crash Course

Source code for my course, The Complete Vue.js 3 Crash Course. https://vuejs-course.com/courses/vuejs-3-complete-crash-course

Watch the introduction or preview the first few videos.

We start from scratch, covering fundamentals and the classic "Options" API. We then do a few projects to see how to use the fundamentals in real apps, then move on to learning more advanced techniques like the Composition API, Vuex and Vue Router.

Getting Started

Content

+-----------------------------+
| Fundamentals, Hard and Fast |
+-----------------------------+
- Vite, the fastest dev server + Vue.js 3 
- data, methods, computed properties...
- basics of Vue.js!
- "Options" API

+------------------------------+
| Project #1 - Form Validation |
+------------------------------+

- combining all the fundamentals to make something useful
- single file components!
- validation, design patterns

+---------------------------------+
| Project #2 - Pokemon Evolutions |
+---------------------------------+

- <slot> for composition, <transition> for animation
- fetching data asynchronously using fetch

+-----------------+
| Composition API |
+-----------------+

- using the composition API
- computed/reactive/watch etc
- "composables" - reusable logic

+-------------+
| The Rest... |
+-------------+

- Vuex for State Management
- Vue Router for front-end routing