Welcome to the Vue feedback portal. We’re happy you’re here! If you have feedback on how to improve the Vue, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Slot support!?!.
It is a very useful function, since it allows you to expand and customize the properties of any component (as vuetify does in a simple way) and I am seeing that its components do not provide support for slots. It is true that they customize a component by means of a template and a string, it is also true that this makes it tedious and not very maintainable.
Great job in general, but there they drop a few points. Imagine having something as simple as this in its components:
<v-data-table
:headers="headers"
:items="desserts"
class="elevation-1"
>
<template v-slot:item.calories="{ item }">
<v-chip
:color="getColor(item.calories)"
dark
>
{{ item.calories }}
</v-chip>
</template>
</v-data-table>
the entire component structure is where it should be...