...

/

Solution: Migration from Vue 2 to Vue 3

Solution: Migration from Vue 2 to Vue 3

Here’s the solution to the migration from Vue 2 to Vue 3 challenge.

We'll cover the following...

Solution

The challenge required you to migrate a project from Vue 2 to Vue 3 code. These are the changes required:

For src/main.js:

  • Replace the Vue Import with the createApp method and use it to initialize a Vue application. The createApp method is a factory function that returns a new Vue app instance,
...