Oct 29, 2022
0
Level 4
Nuxtjs data is not fetching
This is my simple composable for having user data after login
const user = await useLazyAsyncData('user', () =>
$fetch(api()+'/auth/user', {
headers: userStore.getToken()
})
)
auth token is working but it gets will null in user.data.value
_rawValue: null
_value: null
But on postman api is working
Please or to participate in this conversation.