[Vuejs]-Vue.js How to use <template v-slot> on Props

1👍

I think from the syntax you are using vuetify data table. And as per the doc’s, slots are to be written like this.

<template v-slot:[`item.iconValue`]="{item}">

Refer -> https://vuetifyjs.com/en/components/data-tables/#item

Leave a comment