[Vuejs]-Fetching users from db using asyncData()

0👍

404 is ‘not found’. so I suggest that there’s a problem with the url. Can you provide the error message too?

this is how I implement axios actions:

import axios from 'axios'
async (context) => {
        const res = await axios.get('https://yourlocal:3000/api/collections/do/smth', {
        headers: { //...}
        });

Leave a comment