[Vuejs]-How can i show total number of posts on the home pages in NodeJS and Vuejs

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

Leave a comment