What's New in Vue 3
Vue 3 is nearly upon us! If you'd like to get a head start, join me as we review everything you need to know. We'll discuss the new composition API, portals, Vite, and so much more!
Progress
Series Info
- Episodes
- 14
- Run Time
- 1h 42m
- Difficulty
- Intermediate
- Last Updated
- Nov 2, 2020
- Version
- Latest
Series Episodes
- Updates (10)
Meet Vite
Vite is an alternative to the Vue CLI and uses Vue 3 by default. It's noticeably faster because it does NOT use webpack to bundle your code and instead makes use of native ES module imports. We’ll be using Vite throughout this series so it's a good idea to quickly get familiar with it.Fragments or Multiple Root Nodes
Vue 3 no longer requires a single root node for components. Let's review a few examples, while also discussing how to satisfy the linting rules in VSCode.The Composition API
The Composition API is the biggest change in Vue 3. It’s completely optional but worth understanding in case you come across code that uses it. In this lesson, we'll convert a simple Todo app using the traditional options API to the composition API.Composition API: Refs
In this episode, we'll take a look at making use of refs instead of reactive for our reactive state, while briefly discussing the pros and cons of each.Composition API: Logic Extraction and Reuse
Let's have a look at how to extract repeated code into reusable composition functions. This feature is meant to be a cleaner and preferred alternative to using mixins.Teleport
Teleport was ported from the popular Portal Vue library in Vue 2. It allows you to render pieces of code in other parts of the DOM.Change Detection
Let's take a look at the change detection caveats for objects and arrays that were present in Vue 2. Vue 3 fixes these as they move towards a proxy-based API for change detection.Multiple V-Models
Let’s take a look at the ability to add multiple v-models on a custom component. This allows you to keep state synchronized between a parent and a child component.Global API Changes
Let's discuss the Global API changes in Vue 3, and the ability to use instance methods as opposed to global methods in Vue 2. Further, we'll take a look at Global Tree Shaking.Upgrading to Vue 3
Let's discuss some of the breaking changes in Vue 3 and go over the alternatives. We'll take a look at Initializing Vue, Event API changes, filters, inline templates, andv-model.
- Experimental Features (2)
Suspense
Suspense allows us to render fallback content before your component is ready to be rendered. It’s a cleaner way to handle loading states using a Suspense component and different slots for each of the states.<script setup> and <style vars>
Let's take a look at script setup, which helps reduce the boilerplate in the setup method for the composition API. We'll also review<style vars>which allows us to reference state inside of our style declaration.
- TypeScript (1)
- Laravel Usage (1)
