Implementing Profile Page
Learn how to set a profile page with Vuex.
We'll cover the following
User info section
In this lesson, we will implement the Profile page for the logged-in user. The profile screen will have a User Info
section and an Article List
section. First, we need to create a new Profile.vue file in the ./views folder.
We now need to add the Profile screen to our routes. We do this by going to the index.js file of the ./router folder and importing the Profile screen:
import Profile from "../views/Profile.vue";
Get hands-on with 1400+ tech skills courses.