[Vuejs]-Issues showing the loaded API data using axios in Laravel 8 using Vue.js

0👍

I think you should put {{posts}} inside a root div element:

<template>
    <div>{{posts}}</div>
</template>

Leave a comment