User Authentication with Vuex
Get a basic overview of how to authenticate a user with Vuex.
We'll cover the following...
In this chapter, we are going to implement user login and authentication using the Vuex store mechanism.
Vuex is a centralized store where our user and article data will reside. The state in the store can be fetched to any screens or components inside a ...