[Vuejs]-Trying to make a VueJS API call with axios to get json in a component named prijzen

0👍

Is the Prijzen.vue file definitely in the views/layout directory? That error looks like it might be caused by not being able to find the file where you’ve told it to look.

A different issue:

{{ prijs }}

Is in the template, but prijs is not defined. Also PrijsItem component has been imported but not used which will sometimes throw linting errors.

Leave a comment