0👍
Do you know how to get the first 3 items in my json display ? – Yes, To achieve this you can use slice() method of JavaScript.
<tr v-for="list in myData.slice(0,3)" v-bind:key="list.email">
And to render specific fields, You can access them using dot notation on the object.
Ex: {{ list.detailsData.ComparisonOperator }}
- [Vuejs]-Vue 3 checkbox component does not work in laravel as checkbox (Accept terms) situation
- [Vuejs]-VUE js How hide routes by role in vue-router? Spa Laravel Vue
Source:stackexchange.com