0👍
is the auth
middleware applied on the route? because the error code 403
seems like is forbidden error.
if the auth
middleware applied on your route send Authorization
header with the request.
{
headers: {
Authorization: 'Bearer AUTHENTICATION_TOKEN'
}
}
- [Vuejs]-How to add a conditions in V-select?
- [Vuejs]-Toggle components based on prop value in main Vue instance
Source:stackexchange.com