[Vuejs]-Why these vuetify data tables slot isn't working?

0👍

Well, it worked as I found a way through to it

<tr>
                        <td v-for="(header, index) in headers" :key="index">
                            <span
                                v-if="header.value != 'userid'"
                            >{{ header.formatFn(item[header.value]) }}</span>
                            <span v-else-if="header.value == 'userid'">
                                // do your work
                            </span>
                            <span v-else>{{ header.formatFn(item[header.value]) }}</span>
                        </td>
                    </tr>

Leave a comment