[Vuejs]-How to change the label name dynamically in vs-tab using vue.js

0👍

You should replace your code to this:

<vs-tab :label="'Kid ' + (index + 1)" v-for"(kid,index) in kids">

0👍

And to complete the right answer from @webprogrammer don’t forget: for a v-for you need to add a unique key, for instance : :key="index"

Leave a comment