[Vuejs]-Print data with v-for

0👍

Got solution:

        axios
    .get("/api/difficulty-level")
    .then(({ data }) => (this.difficulties = data));

Need to add / before before route link for nested routes

Leave a comment