I want to use the rowRender grid prop with a custom vue component to add additional logic per each row
In this example it's done with a Vue render function:
Vue Grid Component & Styling | Kendo UI for Vue Docs & Demos (telerik.com)
However for my use case I'm trying to use vee-validate's useForm() composable on each row for validation. This composable has to be ran inside a script setup thus requiring me to use a custom vue component for rowRender.
So is it possible to use rowRender with a custom component and still retain the automatic cell rendering like in the render function example?
So something like this (but working of course):
CustomRow.vue:
<template>
<tr>
<slot><!-- render cells here automatically--></slot>
</tr>
</template>