[Vuejs]-Laravel fetchi API Data + vue

0👍

you dont need to convert it to json :albums="@json($data)" it’s already json ->json();

try replace

:albums="@json($data)"

with this

:albums="{{ $data }}"

Leave a comment