<script>
const app = new Vue({
el: '#app',
data:{
results:{}
},
mounted()
{
axios.get('{{ route('request.data') }}').then(response=>this.results = response.data)
}
});
</script>
<span class="company-value" v-text="results.request_stats.new"></span>
As in title this is the error I am getting. but When I console.log(object) the value is there and it is not null. So what is the point of this error
Note: object=results.request_stats
object, noconsole.log, and noresults.request_statsin your example.