The structure of Next projects.
First, clone the project and then run the following command:
npm install
Then, run the project with the following command:
npm run dev
The project can be seen at localhost:3000.
- vee-validate VeeValidate is the most popular Vue.js form library. It takes care of value tracking, validation, errors, submissions and more.
In this project, we used the JWT standard for user authorization. JWT (JSON Web Token) is a commonly used user authentication and authorization standard, used to exchange data securely. Whenever the user wants to access a protected route or resource, the user agent should send the JWT, in the Authorization header using the Bearer schema. The content of the header should look like the following:
Authorization: Bearer <token>