I have specific problem with axios to getting JSON object from my arraylist, so instead of display my displayName on my nav bar, it display all response headers information, i don't know why ? :
that my json list from my localhost :
that my code :
<a class="nav-link dropdown-toggle text-nowrap px-3" v-d-toggle.user-actions>
<img class="user-avatar" src="@/assets/images/avatars/0.jpg" alt="User Avatar">
<span class="d-none d-md-inline-block"></span>{{jsonInfo}}
</a>
<script>
import axios from 'axios';
export default {
data() {
return {
jsonInfo: [],
}
},
mounted () {
axios
.get('http://localhost:5000/info/users')
.then(response => (this.jsonInfo = response))
}
}
</script>

