1๐
โ
As posts
is your array of posts once the response is received, you can display the number of posts using javascripts Array.length
property.
In Vue you can render this directly in the HTML template using {{ posts.length }}
or if you want to loop through them and actually display the posts, use the v-for
directive
๐คpaddyfields
Source:stackexchange.com