I am using Vuetify's datatable, we have different slots with some props for example below
<template #header.data-table-select="{ on, props }">
<v-simple-checkbox color="purple" v-bind="props" v-on="on"></v-simple-checkbox>
</template>
I am also using Vue's eslint plugin to check for any errors/bad code / or any violation, but if I use the above code snippet in my file it gives me the error
'v-slot' directive doesn't support any modifier
as per this doc, it is right.
but it doesn't have any example of how we should handle this case.
how can I remove this warning/or fix it correctly, without making it an exemption.
<template v-slot:[`item.actions`]="{ item }">
any ideas? – Zagreb