我正在尝试制作一个内部组件,该组件将是带有一堆插槽的数据表。顶部没有问题,记录没有问题
子组件名称表数据
<v-data-table>
<template v-slot:top><slot name="top">It's work ))</slot></template>
<template v-slot:item><slot name="item">Dosent work((</slot></template>
</v-data-table>
父项
<TableData>
<template v-slot:top>
<p>Work</p>
</template>
<template v-slot:item.status="{ item }">Error(((
</template>
</TableData>